Skip to content

Commit

Permalink
Add fixes for COJ Gunslinger on Steam (#75)
Browse files Browse the repository at this point in the history
* Add fixes for COJ Gunslinger

- Add wmp11 to fix cutscene audio
- Limit to 31 cores

* Adjust comments
  • Loading branch information
Tiagoquix authored May 9, 2024
1 parent 961c527 commit 77bc435
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 fixes Call of Juarez: Gunslinger
"""
#pylint: disable=C0103

from protonfixes import util

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

0 comments on commit 77bc435

Please sign in to comment.