wined3d: Fix broken ERR() message.

This commit is contained in:
Felix Nawothnig 2007-03-28 20:37:10 +02:00 committed by Alexandre Julliard
parent 335f978e91
commit 6760ccac1c
1 changed files with 4 additions and 1 deletions

View File

@ -1417,7 +1417,10 @@ static void state_patchsegments(DWORD state, IWineD3DStateBlockImpl *stateblock,
TRACE("Stub\n");
if (stateblock->renderState[WINED3DRS_PATCHSEGMENTS] != tmpvalue.d)
ERR("(WINED3DRS_PATCHSEGMENTS,%d) not yet implemented\n", tmpvalue.d);
{
tmpvalue.d = stateblock->renderState[WINED3DRS_PATCHSEGMENTS];
ERR("(WINED3DRS_PATCHSEGMENTS,%f) not yet implemented\n", tmpvalue.f);
}
}
static void state_positiondegree(DWORD state, IWineD3DStateBlockImpl *stateblock, WineD3DContext *context) {