Commit 7b3d200a authored by Henri Verbeet's avatar Henri Verbeet Committed by Alexandre Julliard

d3d9/tests: Fix an ok() message in pointsize_test().

parent da0582a6
......@@ -8598,7 +8598,7 @@ static void pointsize_test(IDirect3DDevice9 *device)
"Expected color 0x00ff0000, got 0x%08x.\n", color);
color = getPixelColor(device, 64+4, 64-4);
ok(color_match(color, D3DCOLOR_ARGB(0x00, 0xff, 0xff, 0x00), 0),
"Expected color 0x0000ff00, got 0x%08x.\n", color);
"Expected color 0x00ffff00, got 0x%08x.\n", color);
color = getPixelColor(device, 64-4, 64+4);
ok(color_match(color, D3DCOLOR_ARGB(0x00, 0x00, 0x00, 0x00), 0),
"Expected color 0x00000000, got 0x%08x.\n", color);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment