summaryrefslogtreecommitdiff
path: root/apps/plugins/rockboy/emu.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/rockboy/emu.c')
-rw-r--r--apps/plugins/rockboy/emu.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/plugins/rockboy/emu.c b/apps/plugins/rockboy/emu.c
index d04fa9a0fb..8b75211ab0 100644
--- a/apps/plugins/rockboy/emu.c
+++ b/apps/plugins/rockboy/emu.c
@@ -7,6 +7,7 @@
7#include "lcd-gb.h" 7#include "lcd-gb.h"
8#include "sound.h" 8#include "sound.h"
9#include "rtc-gb.h" 9#include "rtc-gb.h"
10#include "pcm.h"
10 11
11/* 12/*
12 * emu_reset is called to initialize the state of the emulated 13 * emu_reset is called to initialize the state of the emulated
@@ -23,7 +24,7 @@ void emu_reset(void)
23 sound_reset(); 24 sound_reset();
24} 25}
25 26
26void emu_step(void) 27static void emu_step(void)
27{ 28{
28 cpu_emulate(cpu.lcdc); 29 cpu_emulate(cpu.lcdc);
29} 30}