wined3d: Fix a bad trace.
This commit is contained in:
parent
2122026713
commit
2a40642804
|
@ -1779,7 +1779,7 @@ static HRESULT WINAPI IWineD3DDeviceImpl_CreateAdditionalSwapChain(IWineD3DDevic
|
|||
object->wantsDepthStencilBuffer = FALSE;
|
||||
}
|
||||
|
||||
TRACE("FrontBuf @ %p, BackBuf @ %p, DepthStencil %d\n",object->frontBuffer, object->backBuffer ? NULL : object->backBuffer[0], object->wantsDepthStencilBuffer);
|
||||
TRACE("FrontBuf @ %p, BackBuf @ %p, DepthStencil %d\n",object->frontBuffer, object->backBuffer ? object->backBuffer[0] : NULL, object->wantsDepthStencilBuffer);
|
||||
|
||||
|
||||
/*********************
|
||||
|
|
Loading…
Reference in New Issue