[ros-diffs] [jimtabor] 34229: Setup drawing default to CCW not CW.

jimtabor at svn.reactos.org jimtabor at svn.reactos.org
Tue Jul 1 07:24:59 CEST 2008


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/objects/dc.c?rev=34229&r1=34228&r2=34229&view=diff
==============================================================================
--- 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 );
 



More information about the Ros-diffs mailing list