From f3cca3c855ff01ea3fa5390e1b943fdd06f0f95d Mon Sep 17 00:00:00 2001 From: UsernamesAreNotMyThing <92757918+UsernamesAreNotMyThing@users.noreply.github.com> Date: Thu, 19 Sep 2024 21:24:02 -0400 Subject: [PATCH] Add God of War Ragnarok fix Includes an environment override to allow the game to run on desktop Linux. --- gamefixes-steam/2322010.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 gamefixes-steam/2322010.py diff --git a/gamefixes-steam/2322010.py b/gamefixes-steam/2322010.py new file mode 100644 index 00000000..e4516512 --- /dev/null +++ b/gamefixes-steam/2322010.py @@ -0,0 +1,6 @@ +"Game fix for God of War: Ragnarok" +from os import environ + +def main(): + # Game won't launch on non-Steam Deck systems without this environment variable + environ['SteamDeck'] = '1'