This commit is contained in:
Zane Kaminski 2021-04-01 21:20:54 -04:00
parent 5be7255d9e
commit 266e1a9650
3 changed files with 2 additions and 2 deletions

Binary file not shown.

Binary file not shown.

View File

@ -61,8 +61,8 @@ void P24(Ptr dbg, Ptr cdrom, char dbgByte, char cdromByte) {
signed char mode = true32b;
SwapMMUMode(&mode);
// Patch debug and CD-ROM disable bytes
if (dbg) { *dbg = dbgByte; }
if (cdrom) { *cdrom = cdromByte; }
if (dbg) { *dbg = 0x44; }
//if (cdrom) { *cdrom = 0x44; }
SwapMMUMode(&mode);
}