From 77a958af8e0458b71be1b450e0435858009e5f14 Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Sat, 18 Jul 2020 17:04:24 -0400 Subject: [PATCH] O2: fix mousing cat (timer divider was wrong) --- src/BizHawk.Emulation.Cores/CPUs/Intel8048/I8048.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BizHawk.Emulation.Cores/CPUs/Intel8048/I8048.cs b/src/BizHawk.Emulation.Cores/CPUs/Intel8048/I8048.cs index f99b834cb1..5fa7524410 100644 --- a/src/BizHawk.Emulation.Cores/CPUs/Intel8048/I8048.cs +++ b/src/BizHawk.Emulation.Cores/CPUs/Intel8048/I8048.cs @@ -479,7 +479,7 @@ namespace BizHawk.Emulation.Cores.Components.I8048 if (timer_en) { timer_prescale++; - if (timer_prescale == 32) + if (timer_prescale == 32 * 5) { timer_prescale = 0; if (Regs[TIM] == 255)