Jason Green : d3d9 tests: Correct some typos.

Alexandre Julliard julliard at winehq.org
Tue Jan 22 06:01:46 CST 2008


Module: wine
Branch: master
Commit: e11d7c63b4aad6057d4e1388d519f27d9f370b13
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=e11d7c63b4aad6057d4e1388d519f27d9f370b13

Author: Jason Green <jave27 at gmail.com>
Date:   Mon Jan 21 10:49:39 2008 -0500

d3d9 tests: Correct some typos.

---

 dlls/d3d9/tests/visual.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dlls/d3d9/tests/visual.c b/dlls/d3d9/tests/visual.c
index 4cc07c8..d20d337 100644
--- a/dlls/d3d9/tests/visual.c
+++ b/dlls/d3d9/tests/visual.c
@@ -260,10 +260,10 @@ static void lighting_test(IDirect3DDevice9 *device)
     ok(color == 0x00ff0000, "Unlit quad without normals has color %08x\n", color);
     color = getPixelColor(device, 160, 120); /* upper left quad - lit without normals */
     ok(color == 0x00000000, "Lit quad without normals has color %08x\n", color);
-    color = getPixelColor(device, 480, 360); /* lower left quad - unlit width normals */
-    ok(color == 0x000000ff, "Unlit quad width normals has color %08x\n", color);
-    color = getPixelColor(device, 480, 120); /* upper left quad - lit width normals */
-    ok(color == 0x00000000, "Lit quad width normals has color %08x\n", color);
+    color = getPixelColor(device, 480, 360); /* lower left quad - unlit with normals */
+    ok(color == 0x000000ff, "Unlit quad with normals has color %08x\n", color);
+    color = getPixelColor(device, 480, 120); /* upper left quad - lit with normals */
+    ok(color == 0x00000000, "Lit quad with normals has color %08x\n", color);
 
     hr = IDirect3DDevice9_SetRenderState(device, D3DRS_LIGHTING, FALSE);
     ok(hr == D3D_OK, "IDirect3DDevice9_SetRenderState returned %s\n", DXGetErrorString9(hr));




More information about the wine-cvs mailing list