mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
gdi32: Fix a failing test in win9x.
This commit is contained in:
parent
4490de3528
commit
5468f40ab8
1 changed files with 3 additions and 1 deletions
|
@ -110,7 +110,9 @@ 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, "getColor=%08X\n", (UINT)getColor );
|
||||
ok( getColor == chkColor ||
|
||||
broken(getColor == 0), /* win9x */
|
||||
"getColor=%08X\n", (UINT)getColor );
|
||||
|
||||
SelectPalette( memhdc, hpalOld, FALSE );
|
||||
DeleteObject( hpal );
|
||||
|
|
Loading…
Reference in a new issue