mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-23 16:09:47 +00:00
[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:
parent
cedbcb10c6
commit
45d78f2a60
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user