Fix nocash Char Out debug register (#1500)
To match no$gba, this register should output any ASCII character written to it, not print the number as it currently does.
This commit is contained in:
parent
b069a2acf1
commit
2256b64fcd
|
@ -3751,7 +3751,7 @@ void ARM9IOWrite32(u32 addr, u32 val)
|
|||
}
|
||||
|
||||
// NO$GBA debug register "Char Out"
|
||||
case 0x04FFFA1C: printf("%" PRIu32, val); return;
|
||||
case 0x04FFFA1C: printf("%c", val & 0xFF); return;
|
||||
}
|
||||
|
||||
if (addr >= 0x04000000 && addr < 0x04000060)
|
||||
|
|
Loading…
Reference in New Issue