diff options
| author | SND\shalma_cp <SND\shalma_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2010-11-21 20:06:28 +0000 |
|---|---|---|
| committer | SND\shalma_cp <SND\shalma_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2010-11-21 20:06:28 +0000 |
| commit | 232ed4516dac89d54923aa4b818b8b1cc2b48e96 (patch) | |
| tree | fb27021d6e9625e25771fc53cfa3c3c3f8891208 | |
| parent | 1e71647c7b23d4fea76038e5b5941c2353221dbe (diff) | |
| download | pcsxr-232ed4516dac89d54923aa4b818b8b1cc2b48e96.tar.gz | |
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
| -rw-r--r-- | libpcsxcore/cdrom.c | 6 |
1 files changed, 2 insertions, 4 deletions
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; } |
