Skip to content

Commit

Permalink
Patch SCED -> SCES to make ps3 emulators happy
Browse files Browse the repository at this point in the history
Signed-off-by: Ronnie Sahlberg <[email protected]>
  • Loading branch information
sahlberg committed Oct 12, 2024
1 parent bf7bc7e commit 751ff7a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
8 changes: 7 additions & 1 deletion gamedb.py
Original file line number Diff line number Diff line change
Expand Up @@ -1457,7 +1457,13 @@
'SCED00780': {'id': 'SCED00780', 'title': 'EURO DEMO 17 FRA [DEMO]', 'icon0': None, 'pic0': None, 'pic1': None,},
'SCED00781': {'id': 'SCED00781', 'title': 'EURO DEMO 18 FRA [DEMO]', 'icon0': None, 'pic0': None, 'pic1': None,},
'SCED00782': {'id': 'SCED00782', 'title': 'EURO DEMO 20 FRA [DEMO]', 'icon0': None, 'pic0': None, 'pic1': None,},
'SCED00789': {'id': 'SCED00789', 'title': 'NAMCO DEMO [DEMO]', 'icon0': None, 'pic0': None, 'pic1': None,},
'SCED00789': {
'id': 'SCED00789',
'title': 'NAMCO DEMO [DEMO]',
'icon0': 'https://i0.wp.com/www.retrobros.dk/wp-content/uploads/2020/12/image-83-scaled.jpg?fit=1920%2C2560&ssl=1',
'pic0': None,
'pic1': 'https://i.ytimg.com/vi/08HeUS0IJ0c/maxresdefault.jpg',
},
'SLED00796': {'id': 'SLED00796', 'title': 'INTERNATIONAL SUPERSTAR SOCCER PRO [DEMO]', 'icon0': None, 'pic0': None, 'pic1': None,},
'SLED00797': {'id': 'SLED00797', 'title': 'EXCALIBUR 2555AD [DEMO]', 'icon0': None, 'pic0': None, 'pic1': None,},
'SCED00816': {
Expand Down
3 changes: 3 additions & 0 deletions pop-fe.py
Original file line number Diff line number Diff line change
Expand Up @@ -2970,6 +2970,9 @@ def create_ps3(dest, disc_ids, game_title, icon0, pic0, pic1, cue_files, cu2_fil
if disc_ids[0][:4] == 'SLED':
print('Apply hotfix for SLED games')
p.hotfixes = [ (b'SLED', b'SLES'), ]
if disc_ids[0][:4] == 'SCED':
print('Apply hotfix for SCED games')
p.hotfixes = [ (b'SCED', b'SCES'), ]

# create directory structure
f = subdir + disc_ids[0]
Expand Down

0 comments on commit 751ff7a

Please sign in to comment.