Module: wine Branch: master Commit: 42036ab6f57df0fd0da5582b4bd9e85d8b098c9d URL: http://source.winehq.org/git/wine.git/?a=commit;h=42036ab6f57df0fd0da5582b4b...
Author: Henri Verbeet hverbeet@codeweavers.com Date: Wed Dec 17 17:07:24 2008 +0100
d3d9: Fix a trace.
---
dlls/d3d9/stateblock.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/d3d9/stateblock.c b/dlls/d3d9/stateblock.c index 22e1926..30b42c5 100644 --- a/dlls/d3d9/stateblock.c +++ b/dlls/d3d9/stateblock.c @@ -188,6 +188,6 @@ HRESULT WINAPI IDirect3DDevice9Impl_EndStateBlock(LPDIRECT3DDEVICE9EX iface, I IDirect3DDevice9Ex_AddRef(iface); object->parentDevice = iface; *ppSB=(IDirect3DStateBlock9*)object; - TRACE("(%p)Returning %p %p\n", This, *ppSB, wineD3DStateBlock); + TRACE("(%p) Returning *ppSB %p, wineD3DStateBlock %p\n", This, *ppSB, wineD3DStateBlock); return D3D_OK; }