wined3d: Print real unhandled D3DCMPFUNC value.

This commit is contained in:
Chris Robinson 2006-08-20 13:37:04 -07:00 committed by Alexandre Julliard
parent c5fb8f2829
commit 4c88bb84b9

View file

@ -3685,7 +3685,7 @@ static HRESULT WINAPI IWineD3DDeviceImpl_SetRenderState(IWineD3DDevice *iface, D
case D3DCMP_GREATEREQUAL: glParm = GL_GEQUAL; break;
case D3DCMP_ALWAYS: glParm = GL_ALWAYS; break;
default:
FIXME("Unrecognized/Unhandled D3DCMPFUNC value %ld\n", Value);
FIXME("Unrecognized/Unhandled D3DCMPFUNC value %ld\n", This->stateBlock->renderState[WINED3DRS_ALPHAFUNC]);
}
}
This->alphafunc = glParm;