Author: jimtabor Date: Tue Jul 1 00:24:58 2008 New Revision: 34229
URL: http://svn.reactos.org/svn/reactos?rev=34229&view=rev Log: Setup drawing default to CCW not CW.
Modified: trunk/reactos/subsystems/win32/win32k/objects/dc.c
Modified: trunk/reactos/subsystems/win32/win32k/objects/dc.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/obj... ============================================================================== --- trunk/reactos/subsystems/win32/win32k/objects/dc.c [iso-8859-1] (original) +++ trunk/reactos/subsystems/win32/win32k/objects/dc.c [iso-8859-1] Tue Jul 1 00:24:58 2008 @@ -840,7 +840,7 @@ 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 );