Commit 427c607a authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

ddraw/tests: Fix double assigment to the same lvalue (coccinellery).

parent f9c64883
......@@ -9579,7 +9579,7 @@ static void test_transform_vertices(void)
* y as ((y + 0) * 2 + 1) * 5. The 5 comes from dvScaleX/Y, 2 from
* the view matrix and the +1's from the world and projection matrix. */
vp_data.dwX = 0;
vp_data.dwX = 0;
vp_data.dwY = 0;
vp_data.dwWidth = 256;
vp_data.dwHeight = 256;
vp_data.dvScaleX = 5.0f;
......
......@@ -10954,7 +10954,7 @@ static void test_transform_vertices(void)
* y as ((y + 0) * 2 + 1) * 5. The 5 comes from dvScaleX/Y, 2 from
* the view matrix and the +1's from the world and projection matrix. */
vp_data.dwX = 0;
vp_data.dwX = 0;
vp_data.dwY = 0;
vp_data.dwWidth = 256;
vp_data.dwHeight = 256;
vp_data.dvScaleX = 5.0f;
......
......@@ -12252,7 +12252,7 @@ static void test_transform_vertices(void)
* y as ((y + 0) * 2 + 1) * 5. The 5 comes from dvScaleX/Y, 2 from
* the view matrix and the +1's from the world and projection matrix. */
vp_data.dwX = 0;
vp_data.dwX = 0;
vp_data.dwY = 0;
vp_data.dwWidth = 256;
vp_data.dwHeight = 256;
vp_data.dvScaleX = 5.0f;
......
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