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:
authorPaul Gofman <pgofman@codeweavers.com>2022-09-14 02:14:56 +0300
committerArkadiusz Hiler <ahiler@codeweavers.com>2022-10-14 18:21:56 +0300
commitbe25891a0cb7b5c87e3f9c324b832902eca0c72d (patch)
tree0a846993321e712d31b0e7fee6b54248c392bc62
parent8d2e85be8cace00abe9690091caa9b3e31e0debe (diff)
proton: Enable WINE_HEAP_DELAY_FREE for Call of Duty: Black Ops II Zombies and Multiplayer.
CW-Bug-Id: #21106
-rwxr-xr-xproton6
1 files changed, 6 insertions, 0 deletions
diff --git a/proton b/proton
index 0b1c26ae..b03d515d 100755
--- a/proton
+++ b/proton
@@ -1045,6 +1045,12 @@ def default_compat_config():
if appid == "1621680":
ret.add("noforcelgadd")
+ if appid in [
+ "202990", #Call of Duty: Black Ops II - Multiplayer
+ "212910", #Call of Duty: Black Ops II - Zombies
+ ]:
+ ret.add("heapdelayfree")
+
return ret
class Session: