mcd, fix audio crash after end of last track

This commit is contained in:
kub 2023-07-05 19:54:40 +00:00
parent ae4d881a2f
commit 05d2acaeb2
3 changed files with 10 additions and 9 deletions

View file

@ -57,7 +57,7 @@ PICO_INTERNAL void PicoPowerMCD(void)
Pico_mcd->m.state_flags = PCD_ST_S68K_RST;
Pico_mcd->m.busreq = 2; // busreq on, s68k in reset
Pico_mcd->s68k_regs[3] = 1; // 2M word RAM mode, m68k access
if (Pico.romsize <= 0x20000)
if (Pico.romsize <= 0x20000) // hack to detect BIOS, no GA HINT vector for MSU
memset(Pico.rom + 0x70, 0xff, 4);
}