From 2e6da26ff032c164e163d20e04d062f168e9ac09 Mon Sep 17 00:00:00 2001 From: Philip Rebohle Date: Thu, 26 Sep 2019 19:27:19 +0200 Subject: [PATCH] [dxvk] Spoof Nvidia GPU for HITMAN 2 This game requires a functioning AGS implementation when it detects an AMD GPU and complains about missing D3D11 support otherwise. --- src/util/config/config.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/util/config/config.cpp b/src/util/config/config.cpp index bcb0f6533..7bbe1c352 100644 --- a/src/util/config/config.cpp +++ b/src/util/config/config.cpp @@ -131,6 +131,10 @@ namespace dxvk { { R"(\\Overwatch\.exe$)", {{ { "d3d11.allowMapFlagNoWait", "False" }, }} }, + /* Hitman 2 - requires AGS library */ + { R"(\\HITMAN2\.exe$)", {{ + { "dxgi.customVendorId", "10de" }, + }} }, }};