Alexandre Julliard : d3drm: Fix a prototype mismatch.

Alexandre Julliard julliard at winehq.org
Wed Jan 26 15:57:30 CST 2022


Module: wine
Branch: master
Commit: 6d3cbb5c703085c7eec1693bc275225424b6329c
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=6d3cbb5c703085c7eec1693bc275225424b6329c

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Wed Jan 26 11:19:44 2022 +0100

d3drm: Fix a prototype mismatch.

Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/d3drm/meshbuilder.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/d3drm/meshbuilder.c b/dlls/d3drm/meshbuilder.c
index 9b85c2d0d0b..401b5aac334 100644
--- a/dlls/d3drm/meshbuilder.c
+++ b/dlls/d3drm/meshbuilder.c
@@ -2676,7 +2676,7 @@ static HRESULT WINAPI d3drm_mesh_SetGroupTexture(IDirect3DRMMesh *iface,
     return IDirect3DRMTexture3_QueryInterface(texture, &IID_IDirect3DRMTexture, (void **)&mesh->groups[id].texture);
 }
 
-static DWORD WINAPI d3drm_mesh_GetGroupCount(IDirect3DRMMesh *iface)
+static UINT WINAPI d3drm_mesh_GetGroupCount(IDirect3DRMMesh *iface)
 {
     struct d3drm_mesh *mesh = impl_from_IDirect3DRMMesh(iface);
 




More information about the wine-cvs mailing list