mirror of
https://github.com/ValveSoftware/Proton.git
synced 2025-03-25 19:59:29 +03:00
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
608505ee78
commit
7ff3867904
3
proton
3
proton
@ -1430,6 +1430,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…
x
Reference in New Issue
Block a user