diff --git a/reactos/subsystems/win32/win32k/objects/dc.c b/reactos/subsystems/win32/win32k/objects/dc.c index 4a7873edd11..e41ef637508 100644 --- a/reactos/subsystems/win32/win32k/objects/dc.c +++ b/reactos/subsystems/win32/win32k/objects/dc.c @@ -840,7 +840,7 @@ IntGdiCreateDC(PUNICODE_STRING Driver, NewDC->erclWindow.top = NewDC->erclWindow.left = 0; NewDC->erclWindow.right = ((PGDIDEVICE)NewDC->pPDev)->GDIInfo.ulHorzRes; NewDC->erclWindow.bottom = ((PGDIDEVICE)NewDC->pPDev)->GDIInfo.ulVertRes; - NewDC->DcLevel.flPath = DCPATH_CLOCKWISE; + NewDC->DcLevel.flPath &= ~DCPATH_CLOCKWISE; // Default is CCW. DC_UnlockDc( NewDC );