diff options
author | Strangerke | 2015-01-27 07:14:55 +0100 |
---|---|---|
committer | Strangerke | 2015-01-27 07:14:55 +0100 |
commit | 849f383169d57b0dee7b33ab0c2166007b50b8c2 (patch) | |
tree | 0ddefa3c7a16b216d32d6fd1b6b8073086fbf44f /engines/made | |
parent | 77302c406f5fa3641ff7dd3454d8b87d43274c86 (diff) | |
download | scummvm-rg350-849f383169d57b0dee7b33ab0c2166007b50b8c2.tar.gz scummvm-rg350-849f383169d57b0dee7b33ab0c2166007b50b8c2.tar.bz2 scummvm-rg350-849f383169d57b0dee7b33ab0c2166007b50b8c2.zip |
MADE: Initialize some variables, remove a useless variable
Diffstat (limited to 'engines/made')
-rw-r--r-- | engines/made/script.cpp | 5 | ||||
-rw-r--r-- | engines/made/script.h | 1 | ||||
-rw-r--r-- | engines/made/scriptfuncs.cpp | 2 |
3 files changed, 7 insertions, 1 deletions
diff --git a/engines/made/script.cpp b/engines/made/script.cpp index 20fa026a40..f9f7acffde 100644 --- a/engines/made/script.cpp +++ b/engines/made/script.cpp @@ -122,6 +122,11 @@ ScriptInterpreter::ScriptInterpreter(MadeEngine *vm) : _vm(vm) { _functions = new ScriptFunctions(_vm); _functions->setupExternalsTable(); + _localStackPos = 0; + _runningScriptObjectIndex = 0; + _codeBase = nullptr; + _codeIp = nullptr; + #undef COMMAND } diff --git a/engines/made/script.h b/engines/made/script.h index bf75bc0875..f28425d13b 100644 --- a/engines/made/script.h +++ b/engines/made/script.h @@ -84,7 +84,6 @@ protected: int16 _localStackPos; int16 _runningScriptObjectIndex; byte *_codeBase, *_codeIp; - bool _terminated; ScriptFunctions *_functions; diff --git a/engines/made/scriptfuncs.cpp b/engines/made/scriptfuncs.cpp index efa765c7eb..bcc08e0dcc 100644 --- a/engines/made/scriptfuncs.cpp +++ b/engines/made/scriptfuncs.cpp @@ -42,6 +42,8 @@ ScriptFunctions::ScriptFunctions(MadeEngine *vm) : _vm(vm), _soundStarted(false) _pcSpeaker2 = new Audio::PCSpeaker(); _vm->_system->getMixer()->playStream(Audio::Mixer::kMusicSoundType, &_pcSpeakerHandle1, _pcSpeaker1); _vm->_system->getMixer()->playStream(Audio::Mixer::kMusicSoundType, &_pcSpeakerHandle2, _pcSpeaker2); + _soundResource = nullptr; + _musicRes = nullptr; } ScriptFunctions::~ScriptFunctions() { |