Skip to content

Commit

Permalink
Disable Esync and Fsync for Disgaea 4 Complete + to stop game from cr…
Browse files Browse the repository at this point in the history
…ashing on launch (#151)

* Add Disgaea 4 fix

There is a regression in Proton 8 that causes the game to crash at launch unless Esync and Fsync are disabled, and it doesn't set these by default.

* Added return type to be consistent with other game fixes

* Update 1233880.py

Fix lint error by using triple quotes instead of single

* Update 1233880.py

Adding missing double quote

* Update 1233880.py

Use triple quotes for top level comment/docstring

---------

Co-authored-by: R1kaB3rN <[email protected]>
  • Loading branch information
UsernamesAreNotMyThing and R1kaB3rN authored Oct 18, 2024
1 parent 6aef6c5 commit f0ce760
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions gamefixes-steam/1233880.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
"""Game fix for Disgaea 4 Complete+"""

from protonfixes import util

def main() -> None:
"""Usually won't reach menu unless Esync and Fsync are disabled"""
util.disable_esync()
util.disable_fsync()

0 comments on commit f0ce760

Please sign in to comment.