diff --git a/bios/Sony/PlayStation/.variants/scph3000.bin.e38466a4 b/bios/Sony/PlayStation/.variants/scph3000.bin.e38466a4 new file mode 100644 index 00000000..15361fc0 Binary files /dev/null and b/bios/Sony/PlayStation/.variants/scph3000.bin.e38466a4 differ diff --git a/bios/Sony/PlayStation/.variants/scph3500.bin.ffa7f9a7 b/bios/Sony/PlayStation/.variants/scph3500.bin.ffa7f9a7 new file mode 100644 index 00000000..63d25e47 Binary files /dev/null and b/bios/Sony/PlayStation/.variants/scph3500.bin.ffa7f9a7 differ diff --git a/scripts/verify.py b/scripts/verify.py index 694bd2ae..6ee211e1 100644 --- a/scripts/verify.py +++ b/scripts/verify.py @@ -1230,13 +1230,24 @@ def verify_emulator( check = check_file_validation(local_path, name, validation_index) if check: reason, _emus = check - result = { - "name": name, - "status": Status.UNTESTED, - "required": required, - "path": local_path, - "reason": reason, - } + better = _find_best_variant( + file_entry, db, local_path, validation_index, + ) + if better: + result = { + "name": name, + "status": Status.OK, + "required": required, + "path": better, + } + else: + result = { + "name": name, + "status": Status.UNTESTED, + "required": required, + "path": local_path, + "reason": reason, + } else: result = { "name": name,