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... ============================================================================== --- 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 */