summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Pavone <pavone@retrodev.com>2017-03-31 09:49:02 -0700
committerMichael Pavone <pavone@retrodev.com>2017-03-31 09:49:02 -0700
commit3fc254ce2e330f129ab0a8180946185b2f1f7927 (patch)
tree40c82a6814786a82a926932e3729d423298455cb
parent74c50fcc525e157d2330f1c7db549d5c20fdfe7c (diff)
Fix accidental fallthrough on com debugger command
-rw-r--r--debug.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/debug.c b/debug.c
index d114531..18db34f 100644
--- a/debug.c
+++ b/debug.c
@@ -588,6 +588,7 @@ int run_debugger_command(m68k_context *context, char *input_buf, m68kinst inst,
(*target)->commands = commands;
} else {
}
+ break;
case 'b':
if (input_buf[1] == 't') {
uint32_t stack = context->aregs[7];