wined3d: Fix a variable name inside a VTRACE.

This commit is contained in:
Henri Verbeet 2008-09-03 16:26:38 +02:00 committed by Alexandre Julliard
parent 5fd7a59e70
commit 4b354e8e62
1 changed files with 1 additions and 1 deletions

View File

@ -680,7 +680,7 @@ static void drawStridedSlowVs(IWineD3DDevice *iface, WineDirect3DVertexStridedDa
} }
/* Start drawing in GL */ /* Start drawing in GL */
VTRACE(("glBegin(%x)\n", glPrimType)); VTRACE(("glBegin(%x)\n", glPrimitiveType));
glBegin(glPrimitiveType); glBegin(glPrimitiveType);
for (vx_index = 0; vx_index < numberOfVertices; ++vx_index) { for (vx_index = 0; vx_index < numberOfVertices; ++vx_index) {