Skip to content

Commit

Permalink
Added a fix for State of Decay 2 Crashes
Browse files Browse the repository at this point in the history
Added `d3dcompiler_47` to prevent game crashes and `win7` to fix multiplayer and prevent multiplayer crashes.
  • Loading branch information
ThisNekoGuy authored Apr 20, 2022
1 parent 7641285 commit 14a71e2
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions protonfixes/gamefixes/495420.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
""" Game fix for State of Decay 2
"""
#pylint: disable=C0103

from protonfixes import util

def main():
""" Fix game crashes with d3dcompiler_47 and multiplayer crashes with win7
"""

util.protontricks('d3dcompiler_47')
util.protontricks('win7')

0 comments on commit 14a71e2

Please sign in to comment.