From f519a0f2e4825c51b21ef8ee52e40bbd5679777b Mon Sep 17 00:00:00 2001 From: Philip Rebohle Date: Sat, 16 Jun 2018 18:51:39 +0200 Subject: [PATCH] [d3d11] Fake streamout support for Final Fantasy XV The game uses this feature only for Hairworks. This hides an error message and allows the game to start. --- src/d3d11/d3d11_options.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/d3d11/d3d11_options.cpp b/src/d3d11/d3d11_options.cpp index 80ddec8f..6ed7663b 100644 --- a/src/d3d11/d3d11_options.cpp +++ b/src/d3d11/d3d11_options.cpp @@ -7,6 +7,7 @@ namespace dxvk { const static std::unordered_map g_d3d11AppOptions = {{ { "Dishonored2.exe", D3D11OptionSet(D3D11Option::AllowMapFlagNoWait) }, { "FarCry5.exe", D3D11OptionSet(D3D11Option::AllowMapFlagNoWait) }, + { "ffxv_s.exe", D3D11OptionSet(D3D11Option::FakeStreamOutSupport) }, { "Overwatch.exe", D3D11OptionSet(D3D11Option::FakeStreamOutSupport) }, }};