aboutsummaryrefslogtreecommitdiff
path: root/engines/mohawk/riven_scripts.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/mohawk/riven_scripts.cpp')
-rw-r--r--engines/mohawk/riven_scripts.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/engines/mohawk/riven_scripts.cpp b/engines/mohawk/riven_scripts.cpp
index 6e5b811c78..eec27a0b22 100644
--- a/engines/mohawk/riven_scripts.cpp
+++ b/engines/mohawk/riven_scripts.cpp
@@ -50,7 +50,7 @@ RivenScriptManager::~RivenScriptManager() {
}
RivenScriptPtr RivenScriptManager::readScript(Common::ReadStream *stream) {
- RivenScriptPtr script = RivenScriptPtr(new RivenScript(_vm));
+ RivenScriptPtr script = RivenScriptPtr(new RivenScript());
uint16 commandCount = stream->readUint16BE();
@@ -112,8 +112,7 @@ void RivenScriptManager::clearStoredMovieOpcode() {
_storedMovieOpcode.id = 0;
}
-RivenScript::RivenScript(MohawkEngine_Riven *vm) :
- _vm(vm) {
+RivenScript::RivenScript() {
_continueRunning = true;
}