Module: wine Branch: master Commit: 758777d1e2ca751409e7c260b6000204399c8e67 URL: http://source.winehq.org/git/wine.git/?a=commit;h=758777d1e2ca751409e7c260b6...
Author: David Adam david.adam.cnrs@gmail.com Date: Sat Apr 25 09:26:44 2009 +0200
d3d9: Fix a copy/paste error in 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 2e0f992..0663a91 100644 --- a/dlls/d3d9/tests/visual.c +++ b/dlls/d3d9/tests/visual.c @@ -9603,7 +9603,7 @@ static void yuv_color_test(IDirect3DDevice9 *device) { color = getPixelColor(device, 600, 240); ok(color_match(color, ref_color_right, 16), "Input 0x%08x: Got color 0x%08x for pixel 2/1, expected 0x%08x, format %s\n", - test_data[i].in, color, ref_color_left, fmt_string); + test_data[i].in, color, ref_color_right, fmt_string); } IDirect3DSurface9_Release(surface); }