aboutsummaryrefslogtreecommitdiff
path: root/base
diff options
context:
space:
mode:
authorMax Horn2004-11-20 23:49:11 +0000
committerMax Horn2004-11-20 23:49:11 +0000
commitfa97d4ad897452e0ee2d975c4bf4dda45737e4c3 (patch)
tree1f7d1789c69003b7210936f3c3749d4cf4d7cccf /base
parent5d9b35510d7d6aad9408e12aaebed2a79e3ed826 (diff)
downloadscummvm-rg350-fa97d4ad897452e0ee2d975c4bf4dda45737e4c3.tar.gz
scummvm-rg350-fa97d4ad897452e0ee2d975c4bf4dda45737e4c3.tar.bz2
scummvm-rg350-fa97d4ad897452e0ee2d975c4bf4dda45737e4c3.zip
Removing walkthrough stuff again (talked to aquadran about this, he had no objections)
svn-id: r15849
Diffstat (limited to 'base')
-rw-r--r--base/engine.cpp3
-rw-r--r--base/engine.h3
2 files changed, 0 insertions, 6 deletions
diff --git a/base/engine.cpp b/base/engine.cpp
index 5dbdd28e8d..252b9d752b 100644
--- a/base/engine.cpp
+++ b/base/engine.cpp
@@ -47,8 +47,6 @@ Engine::Engine(OSystem *syst)
g_debugLevel = ConfMan.getInt("debuglevel");
_saveFileMan = _system->getSavefileManager();
-
- _walkthroughDialog = new GUI::WalkthroughDialog(1.0, 1.0);
}
Engine::~Engine() {
@@ -56,7 +54,6 @@ Engine::~Engine() {
delete _mixer;
delete _saveFileMan;
- delete _walkthroughDialog;
g_engine = NULL;
}
diff --git a/base/engine.h b/base/engine.h
index 24d58e51f4..509d8cd526 100644
--- a/base/engine.h
+++ b/base/engine.h
@@ -25,8 +25,6 @@
#include "common/str.h"
#include "common/system.h"
-#include "gui/walkthrough.h"
-
class SoundMixer;
class Timer;
@@ -39,7 +37,6 @@ public:
protected:
const Common::String _gameDataPath;
SaveFileManager *_saveFileMan;
- GUI::WalkthroughDialog *_walkthroughDialog;
public:
Engine(OSystem *syst);