aboutsummaryrefslogtreecommitdiff
path: root/engines/mohawk/console.cpp
diff options
context:
space:
mode:
authorBastien Bouclet2010-11-29 21:00:05 +0000
committerBastien Bouclet2010-11-29 21:00:05 +0000
commit149eed5c3296175d122cc7f44db75fe352fae004 (patch)
treefe5f628faf18476f2f8d0beae877ab213b389856 /engines/mohawk/console.cpp
parentbfd272a46ebae1198a489d113d0f50b9418ac202 (diff)
downloadscummvm-rg350-149eed5c3296175d122cc7f44db75fe352fae004.tar.gz
scummvm-rg350-149eed5c3296175d122cc7f44db75fe352fae004.tar.bz2
scummvm-rg350-149eed5c3296175d122cc7f44db75fe352fae004.zip
MOHAWK: Persistent scripts cleanup
- Rename InitOpcodes / PersistentOpcodes to Persistent Scripts for consistency - Get rid of the global var used to tell if the sound receiver script is running svn-id: r54633
Diffstat (limited to 'engines/mohawk/console.cpp')
-rw-r--r--engines/mohawk/console.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/mohawk/console.cpp b/engines/mohawk/console.cpp
index e6eab0b495..b81d9c4c0e 100644
--- a/engines/mohawk/console.cpp
+++ b/engines/mohawk/console.cpp
@@ -267,7 +267,7 @@ bool MystConsole::Cmd_DisableInitOpcodes(int argc, const char **argv) {
return true;
}
- _vm->_scriptParser->disableInitOpcodes();
+ _vm->_scriptParser->disablePersistentScripts();
return true;
}