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

Signed-off-by: Michael Stefaniuc <mstefani@redhat.de>
Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Michael Stefaniuc 2017-02-15 10:50:28 +01:00 committed by Alexandre Julliard
parent f9c6488394
commit 427c607a6c
3 changed files with 3 additions and 3 deletions

View File

@ -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;

View File

@ -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;

View File

@ -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;