From 57e1e034b89265c142aa2c5dfade23c7732ac1f7 Mon Sep 17 00:00:00 2001 From: Filip Navara Date: Thu, 8 Apr 2004 15:45:17 +0000 Subject: [PATCH] - Fixed a typo: 0x31 -> 31 svn path=/trunk/; revision=9032 --- reactos/subsys/win32k/dib/dib1bpp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/subsys/win32k/dib/dib1bpp.c b/reactos/subsys/win32k/dib/dib1bpp.c index 77e01a683ea..6854ec957d4 100644 --- a/reactos/subsys/win32k/dib/dib1bpp.c +++ b/reactos/subsys/win32k/dib/dib1bpp.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: dib1bpp.c,v 1.22 2004/04/07 16:38:27 weiden Exp $ */ +/* $Id: dib1bpp.c,v 1.23 2004/04/08 15:45:17 navaraf Exp $ */ #undef WIN32_LEAN_AND_MEAN #include @@ -409,7 +409,7 @@ DIB_1BPP_BitBlt( } } - RoundedRight = DestRect->right - ((DestRect->right - DestRect->left) & 0x31); + RoundedRight = DestRect->right - ((DestRect->right - DestRect->left) & 31); SourceY = SourcePoint->y; for (Y = DestRect->top; Y < DestRect->bottom; Y++)