From b1537513ef20e0097ee2e2661b9835ecbc6f87ce Mon Sep 17 00:00:00 2001 From: ReactOS Portable Systems Group Date: Sun, 13 Jul 2008 04:22:54 +0000 Subject: [PATCH] - Remove debug code. svn path=/trunk/; revision=34448 --- reactos/drivers/base/bootvid/arm/bootvid.c | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/reactos/drivers/base/bootvid/arm/bootvid.c b/reactos/drivers/base/bootvid/arm/bootvid.c index 5ba5b67fdee..488550d1450 100644 --- a/reactos/drivers/base/bootvid/arm/bootvid.c +++ b/reactos/drivers/base/bootvid/arm/bootvid.c @@ -51,7 +51,7 @@ VGA_COLOR VidpVga8To16BitTransform[16] = {0x00, 0x08, 0x08}, // Cyan {0x08, 0x00, 0x00}, // Red {0x08, 0x00, 0x08}, // Magenta - {0x08, 0x08, 0x00}, // Brown + {0x0B, 0x0D, 0x0F}, // Brown {0x10, 0x10, 0x10}, // Light Gray {0x08, 0x08, 0x08}, // Dark Gray {0x00, 0x00, 0x1F}, // Light Blue @@ -269,23 +269,6 @@ VidpInitializeDisplay(VOID) LCDCONTROL_LCDTFT | LCDCONTROL_LCDPWR | LCDCONTROL_LCDBPP(4)); - -#if DBG - // - // Draw an RGB test pattern - // - int y, x; - for (y = 0; y < 480; y += 40) - { - for (x = 0; x < 640; x++) - { - VidpSetPixel(x, y, 12); - VidpSetPixel(x, y + 10, 9); - VidpSetPixel(x, y + 20, 10); - VidpSetPixel(x, y + 30, 15); - } - } -#endif } /* PUBLIC FUNCTIONS **********************************************************/