aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/lol.cpp
diff options
context:
space:
mode:
authorJohannes Schickel2009-06-01 22:03:27 +0000
committerJohannes Schickel2009-06-01 22:03:27 +0000
commitf57be08d6d24ce196098f39296b5796e6a86ea92 (patch)
treed34faf9de046b3e0ae5807fd3a58ee8a2cbae3dd /engines/kyra/lol.cpp
parentbdea557d7f98b6aeba3b72efd57c4e4aa39c36be (diff)
downloadscummvm-rg350-f57be08d6d24ce196098f39296b5796e6a86ea92.tar.gz
scummvm-rg350-f57be08d6d24ce196098f39296b5796e6a86ea92.tar.bz2
scummvm-rg350-f57be08d6d24ce196098f39296b5796e6a86ea92.zip
- Add some basic debugger for Lands of Lore.
- Allow the "flags" command in all Kyra games to be working properly with 320x200 GUI. svn-id: r41113
Diffstat (limited to 'engines/kyra/lol.cpp')
-rw-r--r--engines/kyra/lol.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/kyra/lol.cpp b/engines/kyra/lol.cpp
index e504fc5bad..d4a7289a95 100644
--- a/engines/kyra/lol.cpp
+++ b/engines/kyra/lol.cpp
@@ -32,6 +32,7 @@
#include "kyra/sound.h"
#include "kyra/timer.h"
#include "kyra/util.h"
+#include "kyra/debugger.h"
#include "sound/voc.h"
#include "sound/audiostream.h"
@@ -541,6 +542,9 @@ 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);
+
return Common::kNoError;
}