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:
parent
f9c6488394
commit
427c607a6c
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue