mcd, optimizations for polling detection

This commit is contained in:
kub 2021-05-17 23:13:27 +02:00
parent 5402223466
commit efaa5e0b04
2 changed files with 5 additions and 3 deletions

View file

@ -342,7 +342,7 @@ void pcd_run_cpus_normal(int m68k_cycles)
Pico_mcd->m.m68k_poll_cnt = 0;
#ifdef USE_POLL_DETECT
if (Pico_mcd->m.m68k_poll_cnt >= 32) {
if (Pico_mcd->m.m68k_poll_cnt >= 16) {
int s68k_left;
// main CPU is polling, (wake and) run sub only
if (SekIsStoppedS68k())