From 6c192edd2b1d024d1270aa78cb1d3e6b2207d46d Mon Sep 17 00:00:00 2001 From: gameblabla Date: Sat, 5 Feb 2022 21:43:34 +0000 Subject: [PATCH] Fix silly typo mistake for CDROM pause/resume fix for DOA. (#242) My bad guys. --- libpcsxcore/cdrom.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libpcsxcore/cdrom.c b/libpcsxcore/cdrom.c index 4eea46bf..191a7373 100644 --- a/libpcsxcore/cdrom.c +++ b/libpcsxcore/cdrom.c @@ -775,7 +775,7 @@ void cdrInterrupt() { * Mednafen's timing don't work for Gundam Battle Assault 2 in PAL/50hz mode, * seems to be timing sensitive as it can depend on the CPU's clock speed. * */ - if (cdr.DriveState != DRIVESTATE_STANDBY) + if (cdr.DriveState == DRIVESTATE_STANDBY) { delay = 7000; } -- 2.39.2