From f949240b2fe220f5234ad5dc40062249d293bd15 Mon Sep 17 00:00:00 2001 From: MartinPL Date: Sat, 8 Sep 2018 12:46:21 +0200 Subject: [PATCH] Spoof AMD card for GTA V GTA V working out of box on Proton for Nvidia users. Tested #624 https://github.com/ValveSoftware/Proton/issues/37#issuecomment-415833819 --- src/util/config/config.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/util/config/config.cpp b/src/util/config/config.cpp index 353fb1bb..8331d1e2 100644 --- a/src/util/config/config.cpp +++ b/src/util/config/config.cpp @@ -36,6 +36,11 @@ namespace dxvk { { "Frostpunk.exe", {{ { "dxgi.deferSurfaceCreation", "True" }, }} }, + /* Grand Theft Auto V */ + { "GTA5.exe", {{ + { "dxgi.customVendorId", "1002" }, + { "dxgi.customDeviceId", "E366" }, + }} }, /* Mafia 3 */ { "mafia3.exe", {{ { "d3d11.fakeStreamOutSupport", "True" }, @@ -208,4 +213,4 @@ namespace dxvk { return config; } -} \ No newline at end of file +}