Update NSLGameScanner.py

This commit is contained in:
Roy 2024-05-05 10:17:19 -07:00 committed by GitHub
parent 2dbff9eaad
commit 2c67e0079a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -762,9 +762,7 @@ def getGogGameInfo(filePath):
launch_command = re.findall(r'\"(.+?)\"', split_line[1])
if launch_command:
launch_command = launch_command[0]
if game_id and game_name and (exe_path or launch_command):
if depends_on and depends_on in game_dict:
exe_path = game_dict[depends_on]['exe']
if game_id and game_name and launch_command:
game_dict[game_name] = {'id': game_id, 'exe': exe_path}
game_id = None
game_name = None
@ -775,6 +773,7 @@ def getGogGameInfo(filePath):
return game_dict
# Define your paths
gog_games_directory = f"{logged_in_home}/.local/share/Steam/steamapps/compatdata/{gog_galaxy_launcher}/pfx/drive_c/Program Files (x86)/GOG Galaxy/Games"
registry_file_path = f"{logged_in_home}/.local/share/Steam/steamapps/compatdata/{gog_galaxy_launcher}/pfx/system.reg"