From b3a7358abd8210174b57ff1611fc9c16d22a4d2b Mon Sep 17 00:00:00 2001 From: kasha695 <67257234+kasha695@users.noreply.github.com> Date: Sat, 14 Dec 2024 20:33:13 +0000 Subject: [PATCH] Create fix for From Dust (33460) 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()