aboutsummaryrefslogtreecommitdiff
path: root/script.cpp
diff options
context:
space:
mode:
authorVincent Hamm2002-04-19 21:06:50 +0000
committerVincent Hamm2002-04-19 21:06:50 +0000
commited65e89a897f66eadc53ce27eb5fe6b39d16a0eb (patch)
tree31261058e6c4b1a5ce92ff36c5bb3cad5a4379ef /script.cpp
parentf442157a14d6918ffa1738426c296eb2f4279fc2 (diff)
downloadscummvm-rg350-ed65e89a897f66eadc53ce27eb5fe6b39d16a0eb.tar.gz
scummvm-rg350-ed65e89a897f66eadc53ce27eb5fe6b39d16a0eb.tar.bz2
scummvm-rg350-ed65e89a897f66eadc53ce27eb5fe6b39d16a0eb.zip
Refixed getActorY in indy3. Fixed class (dunno if the fix doesn't break something else. Fixed intro by slowing down music rate by 3.
svn-id: r4018
Diffstat (limited to 'script.cpp')
-rw-r--r--script.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/script.cpp b/script.cpp
index cc0e27b038..069d8ccb40 100644
--- a/script.cpp
+++ b/script.cpp
@@ -272,7 +272,7 @@ void Scumm::executeScript()
_opcode = fetchScriptByte();
_scriptPointerStart = _scriptPointer;
vm.slot[_currentScript].didexec = 1;
- debug(1, "Script %d: [%X] %s()", vm.slot[_currentScript].number, _opcode, _opcodes_lookup[_opcode]);
+ //debug(1, "Script %d: [%X] %s()", vm.slot[_currentScript].number, _opcode, _opcodes_lookup[_opcode]);
op = getOpcode(_opcode);
(this->*op) ();
}