[PATCH] d3dx9: ID3DXLine OnResetDevice return S_OK
Helps with. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=38615 Signed-off-by: Alistair Leslie-Hughes <leslie_alistair(a)hotmail.com> --- dlls/d3dx9_36/line.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/d3dx9_36/line.c b/dlls/d3dx9_36/line.c index 9ed48087a1..7b2e3b5428 100644 --- a/dlls/d3dx9_36/line.c +++ b/dlls/d3dx9_36/line.c @@ -263,7 +263,7 @@ static HRESULT WINAPI d3dx9_line_OnResetDevice(ID3DXLine *iface) { FIXME("iface %p stub!\n", iface); - return E_NOTIMPL; + return S_OK; } static const struct ID3DXLineVtbl d3dx9_line_vtbl = -- 2.24.1
With a better subject (e.g. "d3dx9: Make ID3DXLine::OnResetDevice() return S_OK.") this is: Signed-off-by: Matteo Bruni <mbruni(a)codeweavers.com>
participants (2)
-
Alistair Leslie-Hughes -
Matteo Bruni