diff options
Diffstat (limited to 'simon/debugger.cpp')
-rw-r--r-- | simon/debugger.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/simon/debugger.cpp b/simon/debugger.cpp index 44bf9be047..53b3195630 100644 --- a/simon/debugger.cpp +++ b/simon/debugger.cpp @@ -27,10 +27,10 @@ namespace Simon { -Debugger::Debugger(SimonEngine *vm) +Debugger::Debugger(SimonEngine *vm) : Common::Debugger<Debugger>() { _vm = vm; - + DCmd_Register("continue", &Debugger::Cmd_Exit); DCmd_Register("exit", &Debugger::Cmd_Exit); DCmd_Register("help", &Debugger::Cmd_Help); @@ -58,9 +58,9 @@ void Debugger::postEnter() { bool Debugger::Cmd_Exit(int argc, const char **argv) { _detach_now = true; - return false; + return false; } - + bool Debugger::Cmd_Help(int argc, const char **argv) { // console normally has 39 line width // wrap around nicely |