From ae6a9c16a4cdbec5fa927b0939a3676249359778 Mon Sep 17 00:00:00 2001 From: Paul Gofman Date: Wed, 19 Mar 2025 13:04:48 -0600 Subject: [PATCH] proton: Set PROTON_LIMIT_RESOLUTIONS for some games. CW-Bug-Id: #25061 --- proton | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/proton b/proton index 13095815..7502b17f 100755 --- a/proton +++ b/proton @@ -1537,6 +1537,18 @@ class Session: if os.environ.get("SteamGameId", 0) == "500810": self.dlloverrides["ddraw"] = "n,b" + if "PROTON_LIMIT_RESOLUTIONS" not in self.env: + if os.environ.get("SteamGameId", 0) in [ + "39540", #SpellForce: Platinum Edition + ]: + self.env["PROTON_LIMIT_RESOLUTIONS"] = "16" + elif os.environ.get("SteamGameId", 0) in [ + "524220", #NieR: Automata + "814380", #Sekiro: Shadows Die Twice + "374320", #DARK SOULS III + ]: + self.env["PROTON_LIMIT_RESOLUTIONS"] = "32" + if "forcelgadd" in self.compat_config: self.env["WINE_LARGE_ADDRESS_AWARE"] = "1" else: