Module: wine Branch: master Commit: cef39a24ee779ba16f3460b2a006d54ddecd56bc URL: https://gitlab.winehq.org/wine/wine/-/commit/cef39a24ee779ba16f3460b2a006d54...
Author: Alistair Leslie-Hughes leslie_alistair@hotmail.com Date: Sun Sep 24 19:03:26 2023 +1000
d3dx9: Trace pointer value in D3DXValidMesh().
---
dlls/d3dx9_36/mesh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/d3dx9_36/mesh.c b/dlls/d3dx9_36/mesh.c index 47a0cadde67..7aa70783735 100644 --- a/dlls/d3dx9_36/mesh.c +++ b/dlls/d3dx9_36/mesh.c @@ -6464,7 +6464,7 @@ error:
HRESULT WINAPI D3DXValidMesh(ID3DXMesh *mesh, const DWORD *adjacency, ID3DXBuffer **errors_and_warnings) { - FIXME("(%p, %p, %p): stub\n", mesh, adjacency, *errors_and_warnings); + FIXME("mesh %p, adjacency %p, errors_and_warnings %p stub.\n", mesh, adjacency, errors_and_warnings);
return E_NOTIMPL; }