From 098292d473a34a4fda7944e48e44cf4af97b180a Mon Sep 17 00:00:00 2001 From: Aleksey Bragin Date: Sun, 10 Sep 2006 14:23:13 +0000 Subject: [PATCH] These DPRINT1s are ONLY for Magnus' debuggin session. Correcting his mistake of commiting them to the tree. (taskmgr.exe should work again) svn path=/trunk/; revision=24021 --- reactos/subsystems/win32/win32k/objects/bitmaps.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/reactos/subsystems/win32/win32k/objects/bitmaps.c b/reactos/subsystems/win32/win32k/objects/bitmaps.c index 016271a02f3..f2cd1180f35 100644 --- a/reactos/subsystems/win32/win32k/objects/bitmaps.c +++ b/reactos/subsystems/win32/win32k/objects/bitmaps.c @@ -1069,25 +1069,25 @@ NtGdiSetPixel( COLORREF Color) { - DPRINT1("0 NtGdiSetPixel X %ld Y %ld C %ld\n",X,Y,Color); + DPRINT("0 NtGdiSetPixel X %ld Y %ld C %ld\n",X,Y,Color); if (((Color>>24) & 0xff)<0x10) { Color = ((Color>>16) & 0x0000ff) | ((Color<<16) & 0xff0000) | (Color & 0x00ff00); } - DPRINT1("0 NtGdiSetPixel X %ld Y %ld C %ld\n",X,Y,Color); + DPRINT("0 NtGdiSetPixel X %ld Y %ld C %ld\n",X,Y,Color); if (NtGdiSetPixelV(hDC,X,Y,Color)) { Color = NtGdiGetPixel(hDC,X,Y); - DPRINT1("1 NtGdiSetPixel X %ld Y %ld C %ld\n",X,Y,Color); + DPRINT("1 NtGdiSetPixel X %ld Y %ld C %ld\n",X,Y,Color); return Color; } Color = ((COLORREF) -1); - DPRINT1("2 NtGdiSetPixel X %ld Y %ld C %ld\n",X,Y,Color); + DPRINT("2 NtGdiSetPixel X %ld Y %ld C %ld\n",X,Y,Color); return Color; }