From 29548fa7244d59a4ca61c7279a55a98f088a4b51 Mon Sep 17 00:00:00 2001 From: Paul Gofman Date: Fri, 1 Aug 2025 10:17:06 -0600 Subject: [PATCH] proton: Hide AMD GPU for Crysis 3. CW-Bug-Id: #25745 --- proton | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/proton b/proton index 03970cc45..72f5d5bfd 100755 --- a/proton +++ b/proton @@ -1455,6 +1455,11 @@ class Session: elif appid in default_cpu_limit: self.env["WINE_CPU_TOPOLOGY"] = str(default_cpu_limit[appid]) + if "WINE_HIDE_AMD_GPU" not in self.env and appid in [ + "1282690", + ]: + self.env["WINE_HIDE_AMD_GPU"] = "1" + def init_wine(self): if "HOST_LC_ALL" in self.env and len(self.env["HOST_LC_ALL"]) > 0: #steam sets LC_ALL=C to help some games, but Wine requires the real value