Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Ronnie Sahlberg <ronniesahlberg@gmail.com>
  • Loading branch information
sahlberg committed Jul 25, 2023
1 parent 751d6a0 commit 73dedd6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gamedb.py
Original file line number Diff line number Diff line change
Expand Up @@ -3839,7 +3839,7 @@
'pic0': 'https://images.launchbox-app.com/93d9cd45-c6a2-4d51-9edd-0c6020bcfd4b.png',
'pic1': 'https://images.launchbox-app.com/d9029bf7-22d3-4cfe-843d-102435d34096.jpg',
'snd0': 'https://www.youtube.com/watch?v=9LYNLbbVA0I&list=PL75F88CFDC09037C2&index=1',
'manual': 'https://psxdatacenter.com/manuals/Coolboarders%20[SLPS-00456]%20(J).cbr',
'manual': 'https://archive.org/download/SonyPlaystationManuals/Crash%20Bash%20%28USA%29_jp2.zip',
},
'SCUS94154': {
'url': "games/U/C/SCUS-94154.html",
Expand Down
2 changes: 1 addition & 1 deletion pop-fe.py
Original file line number Diff line number Diff line change
Expand Up @@ -2179,7 +2179,7 @@ def create_manual(source, gameid, subdir='./pop-fe-work/'):
print('Use locally stored manual from', manual)
except:
True
if not manual and 'manual' in games[disc_ids[0]]:
if disc_ids[0] in games and not manual and 'manual' in games[disc_ids[0]]:
manual = games[disc_ids[0]]['manual']
if manual:
manual = create_manual(manual, disc_ids[0])
Expand Down

0 comments on commit 73dedd6

Please sign in to comment.