diff --git a/gamefixes-steam/33460.py b/gamefixes-steam/33460.py new file mode 100644 index 00000000..8d899e4d --- /dev/null +++ b/gamefixes-steam/33460.py @@ -0,0 +1,9 @@ +"""Game fix for From Dust""" + +from protonfixes import util + + +def main() -> None: + """Game will get stuck on initial loading screen unless these are disabled""" + util.disable_esync() + util.disable_fsync() diff --git a/gamefixes-steam/377840.py b/gamefixes-steam/377840.py index 08e03e77..a2b93251 100755 --- a/gamefixes-steam/377840.py +++ b/gamefixes-steam/377840.py @@ -4,9 +4,5 @@ def main() -> None: - """Changes the proton argument from the launcher to the game""" # Fix crackling audio util.set_environment('PULSE_LATENCY_MSEC', '60') - - # Replace launcher with game exe in proton arguments - util.replace_command('FF9_Launcher.exe', 'x64/FF9.exe')