d3drm: Display new ref in trace for AddRef and Release for IDirect3DRMMesh.

This commit is contained in:
Christian Costa 2012-05-17 10:09:48 +02:00 committed by Alexandre Julliard
parent 9e44f89d6b
commit 2dbbecbb9e
1 changed files with 2 additions and 2 deletions

View File

@ -2149,7 +2149,7 @@ static ULONG WINAPI IDirect3DRMMeshImpl_AddRef(IDirect3DRMMesh* iface)
IDirect3DRMMeshImpl *This = impl_from_IDirect3DRMMesh(iface);
ULONG ref = InterlockedIncrement(&This->ref);
TRACE("(%p): AddRef from %d\n", This, ref - 1);
TRACE("(%p)->(): new ref = %d\n", This, ref);
return ref;
}
@ -2159,7 +2159,7 @@ static ULONG WINAPI IDirect3DRMMeshImpl_Release(IDirect3DRMMesh* iface)
IDirect3DRMMeshImpl *This = impl_from_IDirect3DRMMesh(iface);
ULONG ref = InterlockedDecrement(&This->ref);
TRACE("(%p): ReleaseRef to %d\n", This, ref);
TRACE("(%p)->(): new ref = %d\n", This, ref);
if (!ref)
HeapFree(GetProcessHeap(), 0, This);