gdi32/tests/palette: remove win9x hacks

Austin English austinenglish at gmail.com
Tue Jul 26 20:01:07 CDT 2011


https://testbot.winehq.org/JobDetails.pl?Key=12894

-- 
-Austin
-------------- next part --------------
diff --git a/dlls/gdi32/tests/palette.c b/dlls/gdi32/tests/palette.c
index 851c321..c9455ca 100644
--- a/dlls/gdi32/tests/palette.c
+++ b/dlls/gdi32/tests/palette.c
@@ -110,9 +110,7 @@ static void test_DIB_PAL_COLORS(void) {
     SetPixel( memhdc, 0, 0, setColor );
     chkColor = RGB( logpalettedata[3].peRed, logpalettedata[3].peGreen, logpalettedata[3].peBlue );
     getColor = GetPixel( memhdc, 0, 0 );
-    ok( getColor == chkColor ||
-        broken(getColor == 0), /* win9x */
-        "getColor=%08X\n", (UINT)getColor );
+    ok( getColor == chkColor, "getColor=%08X\n", (UINT)getColor );
 
     SelectPalette( memhdc, hpalOld, FALSE );
     DeleteObject( hpal );


More information about the wine-patches mailing list