-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c5781c1
commit 71cf735
Showing
1 changed file
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
"""Game fix for Indiana Jones and the Great Circle""" | ||
|
||
from protonfixes import util | ||
|
||
|
||
def main() -> None: | ||
"""Workarounds for various graphics driver bugs encountered in this game""" | ||
# RadV: Missing textures and glowing eyes | ||
util.set_environment('radv_legacy_sparse_binding', 'true') | ||
util.set_environment('radv_zero_vram', 'true') | ||
util.set_environment('RADV_DEBUG', 'nodcc') | ||
# Nvidia: bad performance due to poor VRAM utilization | ||
util.set_environment('DXVK_NVAPI_GPU_ARCH', 'GA100') | ||
util.set_environment('__GL_13ebad', '0x1') |