From 1e71647c7b23d4fea76038e5b5941c2353221dbe Mon Sep 17 00:00:00 2001 From: "SND\\shalma_cp" Date: Sun, 21 Nov 2010 20:05:28 +0000 Subject: 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 --- libpcsxcore/cdrom.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'libpcsxcore') 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; -- cgit v1.2.3