diff options
author | Michael Pavone <pavone@retrodev.com> | 2015-07-17 08:49:23 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2015-07-17 08:49:23 -0700 |
commit | fb73e9f0a60befdec0b81331e994cfd4424e1e65 (patch) | |
tree | c08cd91156942edee25b764812e32eb90a3a50e3 /io.c | |
parent | ec937eb637770838c92864d1d51393297a226d82 (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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |