From 3eedff32531b8121aa9dece9a7b614e73285c5fe Mon Sep 17 00:00:00 2001 From: Magnus Olsen Date: Mon, 30 May 2005 07:27:22 +0000 Subject: [PATCH] fix winquake color glitc bug the text are now whie instead for black svn path=/trunk/; revision=15678 --- reactos/subsys/win32k/objects/color.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/subsys/win32k/objects/color.c b/reactos/subsys/win32k/objects/color.c index 8ea0d9b741a..19e5f7ef108 100644 --- a/reactos/subsys/win32k/objects/color.c +++ b/reactos/subsys/win32k/objects/color.c @@ -32,7 +32,7 @@ static HPALETTE hPrimaryPalette = 0; // used for WM_PALETTECHANGED //static HPALETTE hLastRealizedPalette = 0; // UnrealizeObject() needs it -static UINT SystemPaletteUse = SYSPAL_STATIC; /* currently not considered */ +static UINT SystemPaletteUse = SYSPAL_NOSTATIC; /* the program need save the palate and restore it */ const PALETTEENTRY COLOR_sysPalTemplate[NB_RESERVED_COLORS] = { -- 2.17.1