Skip to content

Commit

Permalink
Merge pull request #32 from NoXPhasma/master
Browse files Browse the repository at this point in the history
Added fix for Banished
  • Loading branch information
simons-public authored Oct 26, 2018
2 parents 7591109 + 7a4b691 commit fe3bf6e
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions protonfixes/gamefixes/242920.py
Original file line number Diff line number Diff line change
@@ -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')

0 comments on commit fe3bf6e

Please sign in to comment.