Commit 9b0258f5 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

d3dx9/tests: Remove useless cast to self.

parent bd0c7c7a
......@@ -2026,7 +2026,7 @@ static void D3DXVector2Test(void)
D3DXVec2TransformCoord(&gotvec, &u, &mat);
expect_vec2(&expectedvec, &gotvec, 1);
gotvec.x = u.x; gotvec.y = u.y;
D3DXVec2TransformCoord(&gotvec, (D3DXVECTOR2 *)&gotvec, &mat);
D3DXVec2TransformCoord(&gotvec, &gotvec, &mat);
expect_vec2(&expectedvec, &gotvec, 1);
/*_______________D3DXVec2TransformNormal______________________*/
......
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