Skip to content

Commit

Permalink
Add more fingerprints and detections
Browse files Browse the repository at this point in the history
Signed-off-by: Ronnie Sahlberg <[email protected]>
  • Loading branch information
sahlberg committed Dec 23, 2024
1 parent d8f9d0a commit 24e60de
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
12 changes: 12 additions & 0 deletions gamedb.py
Original file line number Diff line number Diff line change
Expand Up @@ -71440,6 +71440,18 @@
}

gameid_by_md5sum = {
'86b35f842e7291c446c06839731f3922': {
'id': 'SLES04046',
},
'45d784e18f606fe0be6d52cc0b1cb889': {
'id': 'SLES04055',
},
'01913b573ef2b98eeac93cc75af06414': {
'id': 'SLES03953',
},
'b35c540faa624729a272749ae262617c': {
'id': 'SLES03995',
},
'13de525750a726386a07ddcdf8063f37': {
'id': 'SLES04069',
},
Expand Down
7 changes: 6 additions & 1 deletion pop-fe.py
Original file line number Diff line number Diff line change
Expand Up @@ -4499,7 +4499,12 @@ def patch_libcrypt(real_disc_ids, cue_files, img_files, subdir='pop-fe-work/'):
subchannels.append(generate_subchannels(libcrypt[real_disc_ids[idx]]['magic_word']))

if not args.no_libcrypt:
cue_files, img_files = patch_libcrypt(real_disc_ids, cue_files, img_files, subdir=subdir)
try:
# The libcrypt patcher crashes on some games like 'This Is Football (Europe) (Fr,Nl)'
cue_files, img_files = patch_libcrypt(real_disc_ids, cue_files, img_files, subdir=subdir)
except:
print('patch_libcrypt cashed :-(')
True

print('Cue Files', cue_files) if verbose else None
print('Img Files', img_files) if verbose else None
Expand Down

0 comments on commit 24e60de

Please sign in to comment.