O2: fix mousing cat (timer divider was wrong)
This commit is contained in:
parent
74a57c320e
commit
77a958af8e
|
@ -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)
|
||||||
|
|
Loading…
Reference in New Issue