Helps with. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=38615
Signed-off-by: Alistair Leslie-Hughes leslie_alistair@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 =
With a better subject (e.g. "d3dx9: Make ID3DXLine::OnResetDevice() return S_OK.") this is:
Signed-off-by: Matteo Bruni mbruni@codeweavers.com