summaryrefslogtreecommitdiff
path: root/io.c
diff options
context:
space:
mode:
authorMichael Pavone <pavone@retrodev.com>2015-07-17 08:49:23 -0700
committerMichael Pavone <pavone@retrodev.com>2015-07-17 08:49:23 -0700
commitfb73e9f0a60befdec0b81331e994cfd4424e1e65 (patch)
treec08cd91156942edee25b764812e32eb90a3a50e3 /io.c
parentec937eb637770838c92864d1d51393297a226d82 (diff)
Add ability to change start address for VRAM viewer. Fix handling of DMA enable flag when it comes to DMA fills. This fixes a bug in James Pond 3
Diffstat (limited to 'io.c')
-rw-r--r--io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/io.c b/io.c
index 3b89b99..50d4df7 100644
--- a/io.c
+++ b/io.c
@@ -248,7 +248,7 @@ void handle_binding_up(keybinding * binding)
{
case UI_DEBUG_MODE_INC:
ui_debug_mode++;
- if (ui_debug_mode == 4) {
+ if (ui_debug_mode == 7) {
ui_debug_mode = 0;
}
genesis->vdp->debug = ui_debug_mode;