From 4ae542e875a4a64d88a952b2e37dc3bf0fcecf03 Mon Sep 17 00:00:00 2001 From: Philip Rebohle Date: Mon, 14 Aug 2023 19:49:03 +0200 Subject: [PATCH] [util] Do not hide Nvidia GPUs from Ratchet & Clank NVAPI is disabled now due to crashing issues in a wine-specific code path within the game, but we still want it to detect the correct GPU so that it doesn't complain about drivers and also allows users to enable Raytracing. --- src/util/config/config.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/util/config/config.cpp b/src/util/config/config.cpp index 2c65e64a..8edaee60 100644 --- a/src/util/config/config.cpp +++ b/src/util/config/config.cpp @@ -817,6 +817,11 @@ namespace dxvk { { R"(\\WILD HEARTS(_Trial)?\.exe$)", {{ { "dxvk.maxChunkSize", "4" }, }} }, + /* Ratchet & Clank: Rift Apart - does not allow + * enabling ray tracing if it sees an AMD GPU. */ + { R"(\\RiftApart\.exe$)", {{ + { "dxgi.hideNvidiaGpu", "False" }, + }} }, }};