From 77bc43568e6dcd248c594aa2acfb040d2bdc60cc Mon Sep 17 00:00:00 2001 From: Tiagoquix <30274161+Tiagoquix@users.noreply.github.com> Date: Wed, 8 May 2024 23:57:52 -0300 Subject: [PATCH] Add fixes for COJ Gunslinger on Steam (#75) * Add fixes for COJ Gunslinger - Add wmp11 to fix cutscene audio - Limit to 31 cores * Adjust comments --- gamefixes-steam/204450.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 gamefixes-steam/204450.py diff --git a/gamefixes-steam/204450.py b/gamefixes-steam/204450.py new file mode 100644 index 00000000..448b78ec --- /dev/null +++ b/gamefixes-steam/204450.py @@ -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)