Fix silly typo mistake for CDROM pause/resume fix for DOA. (#242)
authorgameblabla <gameblabla@users.noreply.github.com>
Sat, 5 Feb 2022 21:43:34 +0000 (21:43 +0000)
committerGitHub <noreply@github.com>
Sat, 5 Feb 2022 21:43:34 +0000 (23:43 +0200)
My bad guys.

libpcsxcore/cdrom.c

index 4eea46b..191a737 100644 (file)
@@ -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;
                        }