diff options
Diffstat (limited to 'engines/queen/debug.cpp')
-rw-r--r-- | engines/queen/debug.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/queen/debug.cpp b/engines/queen/debug.cpp index f4d7cf3b2e..a7cf70fbb2 100644 --- a/engines/queen/debug.cpp +++ b/engines/queen/debug.cpp @@ -50,10 +50,13 @@ Debugger::Debugger(QueenEngine *vm) } Debugger::~Debugger() {} // we need this here for __SYMBIAN32__ + void Debugger::preEnter() { + _vm->pauseEngine(true); } void Debugger::postEnter() { + _vm->pauseEngine(false); _vm->graphics()->setupMouseCursor(); } |