This commit is contained in:
Zane Kaminski 2021-04-01 03:57:40 -04:00
parent 19bf5c98fe
commit a2f6c2fa2c
3 changed files with 2 additions and 2 deletions

Binary file not shown.

Binary file not shown.

View File

@ -62,8 +62,8 @@ void P24(Ptr ramdisk, char dbgEN, char cdromEN) {
signed char mode = true32b;
SwapMMUMode(&mode);
// Patch debug and CD-ROM disable bytes
if (!dbgEN) { ramdisk[*RDiskDBGDisPos] = *RDiskDBGDisByte; }
if (!cdromEN) { ramdisk[*RDiskCDROMDisPos] = *RDiskCDROMDisByte; }
//if (!dbgEN) { ramdisk[*RDiskDBGDisPos] = *RDiskDBGDisByte; }
//if (!cdromEN) { ramdisk[*RDiskCDROMDisPos] = *RDiskCDROMDisByte; }
SwapMMUMode(&mode);
}