summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSND\shalma_cp <SND\shalma_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2010-11-21 20:05:28 +0000
committerSND\shalma_cp <SND\shalma_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2010-11-21 20:05:28 +0000
commit1e71647c7b23d4fea76038e5b5941c2353221dbe (patch)
tree37d44f97d817289d9b3140497201af1a1c2a6631
parent8cc655672dab432b3bcf12202aaaa72d09158711 (diff)
downloadpcsxr-1e71647c7b23d4fea76038e5b5941c2353221dbe.tar.gz
Crusaders of Might and Magic - cdrom.c
- Send FORM2 for 2340 read + ADPCM on - fix 3DO logo git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@59904 e17a0e51-4ae3-4d35-97c3-1a29b211df97
-rw-r--r--libpcsxcore/cdrom.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/libpcsxcore/cdrom.c b/libpcsxcore/cdrom.c
index ae2c7526..968964d8 100644
--- a/libpcsxcore/cdrom.c
+++ b/libpcsxcore/cdrom.c
@@ -1414,10 +1414,12 @@ void cdrReadInterrupt() {
/*
Croc 2: $40 - only FORM1 (*)
+ Crusaders of Might and Magic: $E0 - FORM1 and FORM2-XA (*) - !!!
Judge Dredd: $C8 - only FORM1 (*)
*/
- if( (cdr.Mode & 0x40) == 0 || (cdr.Transfer[4+2] & 0x4) != 0x4 ) {
+ if( (cdr.Mode & 0x40) == 0 || (cdr.Transfer[4+2] & 0x4) != 0x4 ||
+ (cdr.Mode & 0x20) ) {
cdr.Stat = DataReady;
} else {
cdr.Stat = Acknowledge;