From ab317f8e2197fa5e69c1bed8ca5714f518a5fab7 Mon Sep 17 00:00:00 2001 From: Jason Green Date: Mon, 21 Jan 2008 10:49:39 -0500 Subject: [PATCH] [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)); -- 1.4.4.2