From d446f39c638bc4d4217469f09fc0527065cb2783 Mon Sep 17 00:00:00 2001 From: kikmon <79066816+kikmon@users.noreply.github.com> Date: Sun, 30 Apr 2023 17:36:50 -0400 Subject: [PATCH] [PS1 Scanning] Serial extraction is now considered a failure if PSX.EXE is found, allowing CRC fallback and actually fixing the game scanning (#15241) Co-authored-by: papa --- tasks/task_database_cue.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/task_database_cue.c b/tasks/task_database_cue.c index bc281fe077..8a280117d0 100644 --- a/tasks/task_database_cue.c +++ b/tasks/task_database_cue.c @@ -254,7 +254,7 @@ int detect_ps1_game(intfstream_t *fd, char *s, size_t len, const char *filename) string_remove_all_whitespace(s, raw_game_id); cue_append_multi_disc_suffix(s, filename); - return true; + return false; } }