Commit 2fd50cb4 authored by Joris Huizer's avatar Joris Huizer Committed by Alexandre Julliard

wined3d: Fix typo in checkGLcall.

parent 9e1d9ef9
......@@ -3915,7 +3915,7 @@ static void transform_projection(DWORD state, IWineD3DStateBlockImpl *stateblock
/* Window Coord 0 is the middle of the first pixel, so translate by 1/2 pixels */
glTranslatef(63.0f / 128.0f, 63.0f / 128.0f, 0.0f);
checkGLcall("glTranslatef(63.0f / 128.0f, -63.0f / 128.0f, 0.0f)");
checkGLcall("glTranslatef(63.0f / 128.0f, 63.0f / 128.0f, 0.0f)");
}
else
{
......
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