From 232ed4516dac89d54923aa4b818b8b1cc2b48e96 Mon Sep 17 00:00:00 2001 From: "SND\\shalma_cp" Date: Sun, 21 Nov 2010 20:06:28 +0000 Subject: Crusaders of Might and Magic - cdrom.c - Give top priority to cdr commands - fix intro movie git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@59905 e17a0e51-4ae3-4d35-97c3-1a29b211df97 --- libpcsxcore/cdrom.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'libpcsxcore') diff --git a/libpcsxcore/cdrom.c b/libpcsxcore/cdrom.c index 968964d8..2fe87737 100644 --- a/libpcsxcore/cdrom.c +++ b/libpcsxcore/cdrom.c @@ -561,9 +561,7 @@ void cdrRepplayInterrupt() { if( !cdr.Play ) return; - - // Wait for IRQ to be acknowledged - if (cdr.Stat) { + if (cdr.Irq || cdr.Stat) { CDREAD_INT( cdReadTime ); return; } @@ -1322,7 +1320,7 @@ void cdrReadInterrupt() { if (!cdr.Reading) return; - if (cdr.Stat) { + if (cdr.Irq || cdr.Stat) { CDREAD_INT(0x1000); return; } -- cgit v1.2.3