O2: fix mousing cat (timer divider was wrong)

This commit is contained in:
alyosha-tas 2020-07-18 17:04:24 -04:00
parent 74a57c320e
commit 77a958af8e
1 changed files with 1 additions and 1 deletions

View File

@ -479,7 +479,7 @@ namespace BizHawk.Emulation.Cores.Components.I8048
if (timer_en) if (timer_en)
{ {
timer_prescale++; timer_prescale++;
if (timer_prescale == 32) if (timer_prescale == 32 * 5)
{ {
timer_prescale = 0; timer_prescale = 0;
if (Regs[TIM] == 255) if (Regs[TIM] == 255)