From f2d5f352b405487d619bfccfd3f7c6ad9f5579f3 Mon Sep 17 00:00:00 2001 From: kasha695 <67257234+kasha695@users.noreply.github.com> Date: Sat, 14 Dec 2024 21:43:40 +0000 Subject: [PATCH 1/2] Create fix for From Dust (33460) (#170) Fix the loading issue for From Dust. --- gamefixes-steam/33460.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 gamefixes-steam/33460.py 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() From 6970e8f486d5d784d392d1a4360e8be1a9b55ebc Mon Sep 17 00:00:00 2001 From: kasha695 <67257234+kasha695@users.noreply.github.com> Date: Sat, 14 Dec 2024 21:45:13 +0000 Subject: [PATCH 2/2] Remove exe redirect (#171) Remove bypassing the launcher, launcher related issues have been fixed --- gamefixes-steam/377840.py | 4 ---- 1 file changed, 4 deletions(-) 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')