diff options
Diffstat (limited to 'engines/kyra/lol.cpp')
-rw-r--r-- | engines/kyra/lol.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/engines/kyra/lol.cpp b/engines/kyra/lol.cpp index aed8f5c965..538e88aa90 100644 --- a/engines/kyra/lol.cpp +++ b/engines/kyra/lol.cpp @@ -434,6 +434,9 @@ Common::Error LoLEngine::init() { assert(_screen); _screen->setResolution(); + _debugger = new Debugger_LoL(this); + assert(_debugger); + KyraEngine_v1::init(); initStaticResource(); @@ -547,9 +550,6 @@ Common::Error LoLEngine::init() { _spellProcs.push_back(new SpellProc(this, 0)); _spellProcs.push_back(new SpellProc(this, &LoLEngine::castGuardian)); - _debugger = new Debugger_LoL(this); - assert(_debugger); - initKeymap(); return Common::kNoError; @@ -978,6 +978,9 @@ void LoLEngine::startupNew() { } void LoLEngine::runLoop() { + // Initialize debugger since how it should be fully usable + _debugger->initialize(); + enableSysTimer(2); bool _runFlag = true; |