d3d9: Fix a trace.

This commit is contained in:
Henri Verbeet 2008-12-17 17:07:24 +01:00 committed by Alexandre Julliard
parent b316ce3c05
commit 42036ab6f5
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}