Module: wine Branch: master Commit: 3ed963dc5d24573c08729e0c91d6098dfa9e7618 URL: http://source.winehq.org/git/wine.git/?a=commit;h=3ed963dc5d24573c08729e0c91...
Author: Stefan Dösinger stefan@codeweavers.com Date: Tue Feb 12 18:31:45 2008 +0100
d3d9: Fix a ok line.
---
dlls/d3d9/tests/visual.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/dlls/d3d9/tests/visual.c b/dlls/d3d9/tests/visual.c index be45ac6..fdafb88 100644 --- a/dlls/d3d9/tests/visual.c +++ b/dlls/d3d9/tests/visual.c @@ -1397,7 +1397,8 @@ static void fog_with_shader_test(IDirect3DDevice9 *device) ok((unsigned char)(color) == ((unsigned char)test_data[i].color[j]) && abs( ((unsigned char)(color>>8)) - (unsigned char)(test_data[i].color[j]>>8) ) < 13 && abs( ((unsigned char)(color>>16)) - (unsigned char)(test_data[i].color[j]>>16) ) < 13, - "fog ps%i vs%i fvm%i ftm%i %d: got color %08x, expected %08x +-5%%\n", test_data[i].vshader, test_data[i].pshader, test_data[i].vfog, test_data[i].tfog, j, color, test_data[i].color[j]); + "fog vs%i ps%i fvm%i ftm%i %d: got color %08x, expected %08x +-5%%\n", + test_data[i].vshader, test_data[i].pshader, test_data[i].vfog, test_data[i].tfog, j, color, test_data[i].color[j]); } }