diff --git a/src/util/util_env.cpp b/src/util/util_env.cpp index 054f682b..0b18dc36 100644 --- a/src/util/util_env.cpp +++ b/src/util/util_env.cpp @@ -117,10 +117,6 @@ namespace dxvk::env { } } - bool isGhostOfTsushima() { - return getExecutableName() == std::string("GhostOfTsushima.exe"); - } - bool needsAmpereSpoofing(NV_GPU_ARCHITECTURE_ID architectureId, void* pReturnAddress) { // Check if we need to workaround NVIDIA Bug 3634851 if (architectureId >= NV_GPU_ARCHITECTURE_AD100 && isDLSSVersion20To24(pReturnAddress)) { @@ -128,11 +124,6 @@ namespace dxvk::env { return true; } - if (architectureId >= NV_GPU_ARCHITECTURE_AD100 && isGhostOfTsushima()) { - log::info("Spoofing Ampere for Ada and later due to detecting GhostOfTsushima.exe"); - return true; - } - return false; }