Commit f2578fc1 authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

wined3d: Set the correct matrix in wined3d_device_multiply_transform().

parent 019ec466
...@@ -1544,7 +1544,7 @@ void CDECL wined3d_device_multiply_transform(struct wined3d_device *device, ...@@ -1544,7 +1544,7 @@ void CDECL wined3d_device_multiply_transform(struct wined3d_device *device,
* into the primary stateblock. */ * into the primary stateblock. */
mat = &device->state.transforms[state]; mat = &device->state.transforms[state];
multiply_matrix(mat, mat, matrix); multiply_matrix(mat, mat, matrix);
wined3d_cs_emit_set_transform(device->cs, state, matrix); wined3d_cs_emit_set_transform(device->cs, state, mat);
} }
/* Note lights are real special cases. Although the device caps state only /* Note lights are real special cases. Although the device caps state only
......
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