Module: wine Branch: master Commit: 7b3d200ab31b8fc1d9775d1609f7e074d1bed5bc URL: http://source.winehq.org/git/wine.git/?a=commit;h=7b3d200ab31b8fc1d9775d1609...
Author: Henri Verbeet hverbeet@codeweavers.com Date: Thu Jul 29 12:56:56 2010 +0200
d3d9/tests: Fix an ok() message in pointsize_test().
---
dlls/d3d9/tests/visual.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/d3d9/tests/visual.c b/dlls/d3d9/tests/visual.c index 104b569..1aecb86 100644 --- a/dlls/d3d9/tests/visual.c +++ b/dlls/d3d9/tests/visual.c @@ -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);