From 14847ebfcf0ef2e401d4ea96242e636503b7a5d1 Mon Sep 17 00:00:00 2001 From: Magnus Olsen Date: Thu, 21 Dec 2006 23:36:55 +0000 Subject: [PATCH] fixed a typo svn path=/trunk/; revision=25205 --- reactos/subsystems/win32/win32k/dib/dib16bpp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/subsystems/win32/win32k/dib/dib16bpp.c b/reactos/subsystems/win32/win32k/dib/dib16bpp.c index b863ae243fe..506b5def8ea 100644 --- a/reactos/subsystems/win32/win32k/dib/dib16bpp.c +++ b/reactos/subsystems/win32/win32k/dib/dib16bpp.c @@ -651,7 +651,7 @@ BOOLEAN DIB_16BPP_StretchBlt(SURFOBJ *DestSurf, SURFOBJ *SourceSurf, /* Calc the zoom factor of soruce height */ SrcZoomYHight = SrcSizeY / DesSizeY; - SrcZoomYLow = SrcSizeY - (SrcZoomYHight * SrcSizeY); + SrcZoomYLow = SrcSizeY - (SrcZoomYHight * DesSizeY); /* Calc the zoom factor of soruce width */ SrcZoomXHight = SrcSizeX / DesSizeX;