mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
mcd, fix audio crash after end of last track
This commit is contained in:
parent
ae4d881a2f
commit
05d2acaeb2
3 changed files with 10 additions and 9 deletions
|
@ -1235,8 +1235,8 @@ PICO_INTERNAL void PicoMemSetupCD(void)
|
|||
// MSU cartridge. Fake BIOS detection
|
||||
cpu68k_map_set(m68k_read8_map, 0x400000, 0x41ffff, PicoReadM68k8_bios, 1);
|
||||
cpu68k_map_set(m68k_read16_map, 0x400000, 0x41ffff, PicoReadM68k16_bios, 1);
|
||||
// RAM cart
|
||||
} else {
|
||||
// RAM cart
|
||||
cpu68k_map_set(m68k_read8_map, 0x400000, 0x7fffff, PicoReadM68k8_ramc, 1);
|
||||
cpu68k_map_set(m68k_read16_map, 0x400000, 0x7fffff, PicoReadM68k16_ramc, 1);
|
||||
cpu68k_map_set(m68k_write8_map, 0x400000, 0x7fffff, PicoWriteM68k8_ramc, 1);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue