update wine to 5.13

This commit is contained in:
Andrew Eikum 2020-07-14 09:41:56 -05:00
parent 2cc2552492
commit 7d444028c3
6 changed files with 23 additions and 25 deletions

6
proton
View file

@ -18,7 +18,7 @@ from filelock import FileLock
#To enable debug logging, copy "user_settings.sample.py" to "user_settings.py"
#and edit it if needed.
CURRENT_PREFIX_VERSION="5.0-1"
CURRENT_PREFIX_VERSION="5.13-1"
PFX="Proton: "
ld_path_var = "LD_LIBRARY_PATH"
@ -495,7 +495,6 @@ class Session:
self.check_environment("PROTON_NO_FSYNC", "nofsync")
self.check_environment("PROTON_FORCE_LARGE_ADDRESS_AWARE", "forcelgadd")
self.check_environment("PROTON_OLD_GL_STRING", "oldglstr")
self.check_environment("PROTON_USE_SECCOMP", "seccomp")
self.check_environment("PROTON_NO_WRITE_WATCH", "nowritewatch")
if "noesync" in self.compat_config:
@ -508,9 +507,6 @@ class Session:
else:
self.env["WINEFSYNC"] = "1"
if "seccomp" in self.compat_config:
self.env["WINESECCOMP"] = "1"
if "nowritewatch" in self.compat_config:
self.env["WINE_DISABLE_WRITE_WATCH"] = "1"