diff --git a/protonfixes/gamefixes/242920.py b/protonfixes/gamefixes/242920.py new file mode 100644 index 00000000..985847cc --- /dev/null +++ b/protonfixes/gamefixes/242920.py @@ -0,0 +1,18 @@ +""" Game fix for Banished +""" +# pylint: disable=C0103 +from protonfixes import util + + +def main(): + """ Install xact and override + """ + + print('Applying fixes for Banished') + + # If not already installed, install xact + if not util.checkinstalled('xact'): + util.protontricks('xact') + + # Set xaudio2_7 to native, otherwise audio won't work + util.winedll_override('xaudio2_7', 'n')