From 4de509837342f177fb23ec1df90e4617835b47b6 Mon Sep 17 00:00:00 2001 From: Stephen Anthony Date: Sun, 2 Jun 2019 10:22:26 -0230 Subject: [PATCH] Fix compiler warning. --- src/debugger/gui/DebuggerDialog.cxx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/debugger/gui/DebuggerDialog.cxx b/src/debugger/gui/DebuggerDialog.cxx index 453a04646..0fa24d727 100644 --- a/src/debugger/gui/DebuggerDialog.cxx +++ b/src/debugger/gui/DebuggerDialog.cxx @@ -185,6 +185,9 @@ void DebuggerDialog::handleKeyDown(StellaKey key, StellaMod mod) case Event::UnwindAllMenu: doUnwindAll(); return; + + default: + break; } Dialog::handleKeyDown(key, mod);