From 3281baa0bf174e07fe46c25c3ba9e1e80e88e01a Mon Sep 17 00:00:00 2001 From: Filip Navara Date: Thu, 15 Jul 2004 18:13:22 +0000 Subject: [PATCH] - Minor correction to DIB_32BPP_BitBlt that I broke with my last patch. svn path=/trunk/; revision=10126 --- reactos/subsys/win32k/dib/dib32bpp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/subsys/win32k/dib/dib32bpp.c b/reactos/subsys/win32k/dib/dib32bpp.c index 7b9d490698b..95f74dfa9cd 100644 --- a/reactos/subsys/win32k/dib/dib32bpp.c +++ b/reactos/subsys/win32k/dib/dib32bpp.c @@ -16,7 +16,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* $Id: dib32bpp.c,v 1.30 2004/07/14 20:48:56 navaraf Exp $ */ +/* $Id: dib32bpp.c,v 1.31 2004/07/15 18:13:22 navaraf Exp $ */ #include VOID @@ -344,7 +344,7 @@ DIB_32BPP_BitBlt(PBLTINFO BltInfo) } DestBits = (PULONG)( (ULONG_PTR)DestBits - - ((BltInfo->DestRect.right - BltInfo->DestRect.left) << 2) - + ((BltInfo->DestRect.right - BltInfo->DestRect.left) << 2) + BltInfo->DestSurface->lDelta); }