Stefan Dösinger : wined3d: Fix a bad trace.
Module: wine Branch: refs/heads/master Commit: 2a406428041e1dcb523230a94b48cf12880bca75 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=2a406428041e1dcb523230a9... Author: Stefan Dösinger <stefandoesinger(a)gmx.at> Date: Sat Jun 24 11:44:11 2006 +0200 wined3d: Fix a bad trace. --- dlls/wined3d/device.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/wined3d/device.c b/dlls/wined3d/device.c index 4206c66..e1e35f8 100644 --- a/dlls/wined3d/device.c +++ b/dlls/wined3d/device.c @@ -1779,7 +1779,7 @@ #endif 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); /*********************
participants (1)
-
Alexandre Julliard