summaryrefslogtreecommitdiff
path: root/libpcsxcore
diff options
context:
space:
mode:
Diffstat (limited to 'libpcsxcore')
-rw-r--r--libpcsxcore/cdrom.c17
1 files changed, 13 insertions, 4 deletions
diff --git a/libpcsxcore/cdrom.c b/libpcsxcore/cdrom.c
index 685a71c0..70d1a9b0 100644
--- a/libpcsxcore/cdrom.c
+++ b/libpcsxcore/cdrom.c
@@ -206,7 +206,12 @@ extern SPUregisterCallback SPU_registerCallback;
void cdrDecodedBufferInterrupt()
{
- u16 buf_ptr[0x400], lcv;
+ u16 buf_ptr[0x400], lcv;
+
+#if 0
+ return;
+#endif
+
// ISO reader only
if( CDR_init != ISOinit ) return;
@@ -1623,11 +1628,15 @@ void cdrReadInterrupt() {
cdr.Xa.stereo = xa_type;
#endif
-
- // Crash Team Racing: music, speech
+
+#if 0
+ // Crash Team Racing: music, speech
+ // - done using cdda decoded buffer (spu irq)
+ // - don't do here
// signal ADPCM data ready
- psxHu32ref(0x1070) |= SWAP32((u32)0x200);
+ psxHu32ref(0x1070) |= SWAP32((u32)0x200);
+#endif
}
else cdr.FirstSector = -1;
}