Skip to content

Commit

Permalink
Add fixes for COJ Gunslinger
Browse files Browse the repository at this point in the history
- Add wmp11 to fix cutscene audio
- Limit to 31 cores
  • Loading branch information
Tiagoquix committed May 8, 2024
1 parent 961c527 commit 2ff6d8e
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions gamefixes-steam/204450.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
""" Game fix Call of Juarez: Gunslinger
"""
#pylint: disable=C0103

from protonfixes import util

def main():
""" installs wmp11
"""
# Fixes missing audio cutscenes
util.protontricks('wmp11')
# Seems to choke on more than 32 cores, needs testing
util.set_cpu_topology_limit(31)

0 comments on commit 2ff6d8e

Please sign in to comment.