Commit 076e1cf0 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

d3dx9_36/tests: Fix compilation on systems that don't support nameless structs/unions.

parent f00652fc
......@@ -90,7 +90,7 @@ static void test_create_line(IDirect3DDevice9* device)
D3DXMatrixIdentity(&world);
D3DXMatrixIdentity(&identity);
world._11 = r11; world._12 = r12; world._13 = r13; world._14 = r14;
S(U(world))._11 = r11; S(U(world))._12 = r12; S(U(world))._13 = r13; S(U(world))._14 = r14;
hr = IDirect3DDevice9_SetTransform(device, D3DTS_WORLD, &world);
ok(hr == D3D_OK, "Got result %x, expected %x (D3D_OK)\n", hr, D3D_OK);
......
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