http://bugs.winehq.org/show_bug.cgi?id=56628 --- Comment #8 from Stian Low <wineryyyyy@gmail.com> --- (In reply to Patrick Hibbs from comment #7)
Created attachment 81755 [details] Console log of crash in wine-11.14 under clean prefix with GOG full version.
This console log of the crash is also from the GOG full version, using upstream winehq deb packages.
Please retest with this patch if you are able which is the essence of MR-11398 for Haven video bug: - https://bugs.winehq.org/show_bug.cgi?id=50277#c46 diff --git a/dlls/dxgi/dxgi_main.c b/dlls/dxgi/dxgi_main.c index ca1fb525535..34719b1c5ef 100644 --- a/dlls/dxgi/dxgi_main.c +++ b/dlls/dxgi/dxgi_main.c @@ -147,6 +147,11 @@ HRESULT WINAPI DXGID3D10CreateDevice(HMODULE d3d10core, IDXGIFactory *factory, I if (flags) FIXME("Ignoring flags %#x.\n", flags); + if (flags & 0x800) + { + FIXME("failing for D3D11_CREATE_DEVICE_VIDEO_SUPPORT\n"); + return E_FAIL; + } -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.