Skip to content

Commit

Permalink
Add fix for HZD Remastered
Browse files Browse the repository at this point in the history
  • Loading branch information
UsernamesAreNotMyThing authored Nov 1, 2024
1 parent f6f4fd2 commit c5724e5
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions gamefixes-steam/2561580.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
"""Game fix for Horizon Zero Dawn Remastered"""

from sys import argv
from os import environ
from protonfixes import util


def main() -> None:
"""Won't connect to internet without using `-showlinkingqr` or `SteamDeck=1` options."""
if environ.get('SteamDeck', '0') == '0' and '-showlinkingqr' not in argv:
util.append_argument('-showlinkingqr')

0 comments on commit c5724e5

Please sign in to comment.