aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/glk.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2019-07-29 19:59:10 -0700
committerPaul Gilbert2019-07-29 22:05:19 -0700
commita04bdb3d7c77897f562c65166dcf30a82d1825b7 (patch)
tree8eb3ff3b25d14da068291b3506b89f3173d2a1a3 /engines/glk/glk.cpp
parentfc6f9c9adb026da5c30829c7472f98da432fa19c (diff)
downloadscummvm-rg350-a04bdb3d7c77897f562c65166dcf30a82d1825b7.tar.gz
scummvm-rg350-a04bdb3d7c77897f562c65166dcf30a82d1825b7.tar.bz2
scummvm-rg350-a04bdb3d7c77897f562c65166dcf30a82d1825b7.zip
GLK: Added skeleton debugger
Diffstat (limited to 'engines/glk/glk.cpp')
-rw-r--r--engines/glk/glk.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/glk/glk.cpp b/engines/glk/glk.cpp
index 455c42b46c..892094a0b7 100644
--- a/engines/glk/glk.cpp
+++ b/engines/glk/glk.cpp
@@ -47,7 +47,7 @@ GlkEngine *g_vm;
GlkEngine::GlkEngine(OSystem *syst, const GlkGameDescription &gameDesc) :
_gameDescription(gameDesc), Engine(syst), _random("Glk"), _blorb(nullptr),
- _clipboard(nullptr), _conf(nullptr), _events(nullptr), _pictures(nullptr),
+ _clipboard(nullptr), _conf(nullptr), _debugger(nullptr), _events(nullptr), _pictures(nullptr),
_screen(nullptr), _selection(nullptr), _sounds(nullptr), _windows(nullptr),
_copySelect(false), _terminated(false), _pcSpeaker(nullptr),
gli_register_obj(nullptr), gli_unregister_obj(nullptr), gli_register_arr(nullptr),
@@ -65,6 +65,7 @@ GlkEngine::~GlkEngine() {
delete _blorb;
delete _clipboard;
delete _conf;
+ delete _debugger;
delete _events;
delete _pcSpeaker;
delete _pictures;
@@ -79,6 +80,7 @@ void GlkEngine::initialize() {
initGraphicsMode();
_conf = new Conf(getInterpreterType());
+ _debugger = createDebugger();
_screen = createScreen();
_screen->initialize();
_clipboard = new Clipboard();