Module: wine Branch: master Commit: 467bbc4497e2d75030f48268c71a9df6845b8bdd URL: http://source.winehq.org/git/wine.git/?a=commit;h=467bbc4497e2d75030f48268c7...
Author: André Hentschel nerv@dawncrow.de Date: Sun Jan 15 17:00:16 2012 +0100
d3drm: Fix invocation of GetTextureCoordinates.
---
dlls/d3drm/meshbuilder.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/d3drm/meshbuilder.c b/dlls/d3drm/meshbuilder.c index 34a8d4c..7ad7a38 100644 --- a/dlls/d3drm/meshbuilder.c +++ b/dlls/d3drm/meshbuilder.c @@ -774,7 +774,7 @@ static HRESULT WINAPI IDirect3DRMMeshBuilder2Impl_GetTextureCoordinates(IDirect3
TRACE("(%p)->(%d,%p,%p)\n", This, index, u, v);
- return IDirect3DRMMeshBuilder2_GetTextureCoordinates(&This->IDirect3DRMMeshBuilder3_iface, + return IDirect3DRMMeshBuilder3_GetTextureCoordinates(&This->IDirect3DRMMeshBuilder3_iface, index, u, v); }