From 6360a61b062aeb1352c80dddcae611228207f5b5 Mon Sep 17 00:00:00 2001 From: gameblabla Date: Wed, 25 Aug 2021 21:53:08 +0000 Subject: [PATCH] We shouldn't throw an error for GetQ. (#202) I doubt this is used by any games but who knows. See Mednafen for reference : https://github.com/libretro-mirrors/mednafen-git/blob/1899500078169e787f86eb5302a3f35abdaa8764/src/psx/cdc.cpp#L2527 --- libpcsxcore/cdrom.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libpcsxcore/cdrom.c b/libpcsxcore/cdrom.c index 0bb2d57b..5b53e99d 100644 --- a/libpcsxcore/cdrom.c +++ b/libpcsxcore/cdrom.c @@ -898,8 +898,7 @@ void cdrInterrupt() { break; case CdlGetQ: - // TODO? - CDR_LOG_I("got CdlGetQ\n"); + no_busy_error = 1; break; case CdlReadToc: -- 2.39.2