Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ValveSoftware/Proton.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Eikum <aeikum@codeweavers.com>2022-02-11 00:04:48 +0300
committerArkadiusz Hiler <ahiler@codeweavers.com>2022-02-11 18:39:00 +0300
commit0623da2af422e34101787cb772bbefece6a9885b (patch)
tree3dc2d26fdb67cc28c440457343bff109d4b33f92
parent25a58123a169dec4282b92bc1b24411278d0b65f (diff)
proton: Add noesync,nofsync for PixelJunk Edenproton-7.0-1
-rwxr-xr-xproton3
1 files changed, 3 insertions, 0 deletions
diff --git a/proton b/proton
index 264d51a0..bc9b8d4a 100755
--- a/proton
+++ b/proton
@@ -919,6 +919,9 @@ def default_compat_config():
if appid == "1172470": #Apex Legends
ret.add("noesync")
ret.add("nofsync")
+ elif appid == "105800": #PixelJunk Eden
+ ret.add("noesync")
+ ret.add("nofsync")
return ret
class Session: