PCE: Increase read access time even more to fix Gate of Thunder Loading

fixes #70
This commit is contained in:
alyosha-tas 2018-03-21 18:15:51 -04:00
parent 76904df015
commit be253911c6
1 changed files with 3 additions and 1 deletions

View File

@ -412,7 +412,9 @@ namespace BizHawk.Emulation.Cores.PCEngine
// figure out proper read delay later
// 10000 fixes Mugen Senshi Valis, which runs code in a timed loop, expecting a certain number of VBlanks
// to happen before reading is complete
DataReadWaitTimer = pce.Cpu.TotalExecutedCycles + 10000;
// 175000 fixes 4 in 1 CD, loading Gate of Thunder
// which expects a certain number of timer interrupts to happen before loading is complete
DataReadWaitTimer = pce.Cpu.TotalExecutedCycles + 175000;
pce.CDAudio.Stop();
}