[PS1 Serial Scanning] (#14219)

Changed return value of detect_ps1_game function to actuially return a
failure when the Serial couldn't be extracted.
Scanner will then fallback on crc check, and usually ends up finding the
games in the database.

Co-authored-by: papa <papa>
This commit is contained in:
kikmon 2022-07-26 05:41:32 +09:00 committed by GitHub
parent cedbcb10c6
commit 45d78f2a60
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -280,7 +280,7 @@ int detect_ps1_game(intfstream_t *fd, char *game_id, const char *filename)
strcpy(game_id, "XXXXXXXXXX");
game_id[10] = '\0';
cue_append_multi_disc_suffix(game_id, filename);
return true;
return false;
}
int detect_psp_game(intfstream_t *fd, char *game_id, const char *filename)