From abeeeffe07e03e8ea4c2223f673da2e2283b8c21 Mon Sep 17 00:00:00 2001 From: Jorge Gorbe Date: Mon, 27 May 2013 13:54:36 +0200 Subject: [PATCH] bugfix: timer --- core/GameBoy.cc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/core/GameBoy.cc b/core/GameBoy.cc index d0efca9..85b6df8 100644 --- a/core/GameBoy.cc +++ b/core/GameBoy.cc @@ -1403,11 +1403,12 @@ GameBoy::run_status GameBoy::run_cycle() u8 TAC = memory.high[GBMemory::I_TAC]; if (TAC & 0x04) { - timer_count++; + timer_count+=CYCLE_STEP; + u32 limit; u32 val = TAC & 0x03; - if (val) - limit = 16 << (2*val); + if (val > 0) + limit = 4 << (2*val); else limit = 1024; -- 2.34.1