aboutsummaryrefslogtreecommitdiff
path: root/engines/mohawk/riven.cpp
diff options
context:
space:
mode:
authorBastien Bouclet2016-11-01 19:19:26 +0100
committerEugene Sandulenko2017-07-03 08:50:10 +0200
commit14bbf8aab4ed187ec1e6da9e61a1acf6601d0332 (patch)
tree05d0ca49831dc96351a95da6347559e5f5909bac /engines/mohawk/riven.cpp
parente2c5609e81d3a54e0d3c63427288f3c261b86ade (diff)
downloadscummvm-rg350-14bbf8aab4ed187ec1e6da9e61a1acf6601d0332.tar.gz
scummvm-rg350-14bbf8aab4ed187ec1e6da9e61a1acf6601d0332.tar.bz2
scummvm-rg350-14bbf8aab4ed187ec1e6da9e61a1acf6601d0332.zip
MOHAWK: Move the external commands to their respective stacks
Diffstat (limited to 'engines/mohawk/riven.cpp')
-rw-r--r--engines/mohawk/riven.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/engines/mohawk/riven.cpp b/engines/mohawk/riven.cpp
index d6c6754c66..03af71452d 100644
--- a/engines/mohawk/riven.cpp
+++ b/engines/mohawk/riven.cpp
@@ -32,7 +32,6 @@
#include "mohawk/resource.h"
#include "mohawk/riven.h"
#include "mohawk/riven_card.h"
-#include "mohawk/riven_external.h"
#include "mohawk/riven_graphics.h"
#include "mohawk/riven_saveload.h"
#include "mohawk/riven_sound.h"
@@ -69,7 +68,6 @@ MohawkEngine_Riven::MohawkEngine_Riven(OSystem *syst, const MohawkGameDescriptio
_stack = nullptr;
_gfx = nullptr;
_sound = nullptr;
- _externalScriptHandler = nullptr;
_rnd = nullptr;
_scriptMan = nullptr;
_console = nullptr;
@@ -106,7 +104,6 @@ MohawkEngine_Riven::~MohawkEngine_Riven() {
delete _sound;
delete _gfx;
delete _console;
- delete _externalScriptHandler;
delete _extrasFile;
delete _saveLoad;
delete _scriptMan;
@@ -137,7 +134,6 @@ Common::Error MohawkEngine_Riven::run() {
_sound = new RivenSoundManager(this);
_console = new RivenConsole(this);
_saveLoad = new RivenSaveLoad(this, _saveFileMan);
- _externalScriptHandler = new RivenExternal(this);
_optionsDialog = new RivenOptionsDialog(this);
_scriptMan = new RivenScriptManager(this);