Skip to content

Commit

Permalink
Add Indiana Jones fix
Browse files Browse the repository at this point in the history
  • Loading branch information
UsernamesAreNotMyThing authored Dec 15, 2024
1 parent c5781c1 commit 71cf735
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions gamefixes-steam/2677660.py
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')

0 comments on commit 71cf735

Please sign in to comment.