fix %lu warnings for printing addresses

This commit is contained in:
DubbleClick
2023-11-13 23:55:40 +01:00
parent 818963dedd
commit af605f896b
11 changed files with 66 additions and 66 deletions
+2 -2
View File
@@ -44,7 +44,7 @@ ULONG APIENTRY uMod_IDirect3DTexture9::AddRef()
//this function yields for the non switched texture object
ULONG APIENTRY uMod_IDirect3DTexture9::Release()
{
Message("uMod_IDirect3DTexture9::Release(): %lu\n", this);
Message("uMod_IDirect3DTexture9::Release(): %p\n", this);
void* cpy;
const long ret = m_D3Ddev->QueryInterface(IID_IDirect3DTexture9, &cpy);
@@ -103,7 +103,7 @@ ULONG APIENTRY uMod_IDirect3DTexture9::Release()
delete(this);
}
Message("uMod_IDirect3DTexture9::Release() end: %lu\n", this);
Message("uMod_IDirect3DTexture9::Release() end: %p\n", this);
return count;
}