proton: Fix noforcelgadd option.
Code in Wine still enables the hack when WINE_LARGE_ADDRESS_AWARE is missing, need to set it to non-'1' to really disable. CW-Bug-Id: #22930
This commit is contained in:
parent
52667847c4
commit
c6d562b388
1 changed files with 3 additions and 0 deletions
3
proton
3
proton
|
@ -1427,6 +1427,9 @@ class Session:
|
|||
|
||||
if "forcelgadd" in self.compat_config:
|
||||
self.env["WINE_LARGE_ADDRESS_AWARE"] = "1"
|
||||
else:
|
||||
if "noforcelgadd" in self.compat_config:
|
||||
self.env["WINE_LARGE_ADDRESS_AWARE"] = "0"
|
||||
|
||||
if "heapdelayfree" in self.compat_config:
|
||||
self.env["WINE_HEAP_DELAY_FREE"] = "1"
|
||||
|
|
Loading…
Reference in a new issue