Commit 758777d1 authored by David Adam's avatar David Adam Committed by Alexandre Julliard

d3d9: Fix a copy/paste error in test.

parent 2a98ea48
......@@ -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);
}
......
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