From 3ca0a97ca1c04b03beafea9b60652ccac87258e5 Mon Sep 17 00:00:00 2001 From: Jeffrey Pfau Date: Sat, 12 Oct 2013 16:37:10 -0700 Subject: [PATCH] Prepopulate RCNT --- src/gba/gba-io.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gba/gba-io.c b/src/gba/gba-io.c index 7afc5bbea..34acdaf27 100644 --- a/src/gba/gba-io.c +++ b/src/gba/gba-io.c @@ -4,6 +4,7 @@ void GBAIOInit(struct GBA* gba) { gba->memory.io[REG_DISPCNT >> 1] = 0x0080; + gba->memory.io[REG_RCNT >> 1] = 0x8000; gba->memory.io[REG_KEYINPUT >> 1] = 0x3FF; }