diff --git a/gamefixes/2291020.py b/gamefixes/2291020.py new file mode 100644 index 0000000..10f982e --- /dev/null +++ b/gamefixes/2291020.py @@ -0,0 +1,15 @@ +""" Game fix for ANONYMOUS;CODE +""" + +from protonfixes import util + +def main(): + """ install xact, disable esync, disable fsync, disable protonaudioconverterbin plugin + """ + + # Fixes random lock-ups during gameplay + util.protontricks('xact') + util.disable_esync() + util.disable_fsync() + # Fixes audio not playing for in-game videos + util.set_environment('GST_PLUGIN_FEATURE_RANK', 'protonaudioconverterbin:NONE')