From eed9eef5f7dda1c86dd59aa284f158ba33008480 Mon Sep 17 00:00:00 2001 From: Alistair Leslie-Hughes Date: Sat, 4 Jun 2022 14:48:54 +1000 Subject: [PATCH] d3drm: SetBufferCount Fake success Wine-bug: https://bugs.winehq.org/show_bug.cgi?id=43180 Signed-off-by: Alistair Leslie-Hughes --- dlls/d3drm/device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/d3drm/device.c b/dlls/d3drm/device.c index 1a433746224..fe85784ee63 100644 --- a/dlls/d3drm/device.c +++ b/dlls/d3drm/device.c @@ -783,7 +783,7 @@ static HRESULT WINAPI d3drm_device3_SetBufferCount(IDirect3DRMDevice3 *iface, DW { FIXME("iface %p, count %lu stub!\n", iface, count); - return E_NOTIMPL; + return S_OK; } static HRESULT WINAPI d3drm_device2_SetBufferCount(IDirect3DRMDevice2 *iface, DWORD count) -- 2.45.2