[ros-diffs] [fireball] 44814: - Fix a copypaste typo which led to incorrect calculation of a source point in BitBlt.

fireball at svn.reactos.org fireball at svn.reactos.org
Wed Dec 30 17:58:01 CET 2009


Author: fireball
Date: Wed Dec 30 17:58:01 2009
New Revision: 44814

URL: http://svn.reactos.org/svn/reactos?rev=44814&view=rev
Log:
- Fix a copypaste typo which led to incorrect calculation of a source point in BitBlt.

Modified:
    branches/arwinss/reactos/subsystems/win32/win32k/gre/bitblt.c

Modified: branches/arwinss/reactos/subsystems/win32/win32k/gre/bitblt.c
URL: http://svn.reactos.org/svn/reactos/branches/arwinss/reactos/subsystems/win32/win32k/gre/bitblt.c?rev=44814&r1=44813&r2=44814&view=diff
==============================================================================
--- branches/arwinss/reactos/subsystems/win32/win32k/gre/bitblt.c [iso-8859-1] (original)
+++ branches/arwinss/reactos/subsystems/win32/win32k/gre/bitblt.c [iso-8859-1] Wed Dec 30 17:58:01 2009
@@ -345,7 +345,7 @@
     if (pSrc)
     {
         SourcePoint.x += pSrc->rcDcRect.left + pSrc->rcVport.left;
-        SourcePoint.y += pSrc->rcDcRect.top + pSrc->rcVport.left;
+        SourcePoint.y += pSrc->rcDcRect.top + pSrc->rcVport.top;
     }
 
     /* Create the XLATEOBJ */




More information about the Ros-diffs mailing list