diff options
| author | SND\shalma_cp <SND\shalma_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2010-11-21 20:05:28 +0000 |
|---|---|---|
| committer | SND\shalma_cp <SND\shalma_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2010-11-21 20:05:28 +0000 |
| commit | 1e71647c7b23d4fea76038e5b5941c2353221dbe (patch) | |
| tree | 37d44f97d817289d9b3140497201af1a1c2a6631 /libpcsxcore | |
| parent | 8cc655672dab432b3bcf12202aaaa72d09158711 (diff) | |
| download | pcsxr-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
Diffstat (limited to 'libpcsxcore')
| -rw-r--r-- | libpcsxcore/cdrom.c | 4 |
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; |
