aboutsummaryrefslogtreecommitdiff
path: root/scumm/script_v8.cpp
diff options
context:
space:
mode:
authorTravis Howell2004-07-04 12:06:17 +0000
committerTravis Howell2004-07-04 12:06:17 +0000
commit5b7157e3c9c8809b20171e1bfb5170847944759c (patch)
tree9b927e6fa76481464038391792c8521364ba9d11 /scumm/script_v8.cpp
parent11d552ff7e799a64dacab81909a1cb09d5099567 (diff)
downloadscummvm-rg350-5b7157e3c9c8809b20171e1bfb5170847944759c.tar.gz
scummvm-rg350-5b7157e3c9c8809b20171e1bfb5170847944759c.tar.bz2
scummvm-rg350-5b7157e3c9c8809b20171e1bfb5170847944759c.zip
Match disasm., applies to The Dig too.
svn-id: r14167
Diffstat (limited to 'scumm/script_v8.cpp')
-rw-r--r--scumm/script_v8.cpp15
1 files changed, 1 insertions, 14 deletions
diff --git a/scumm/script_v8.cpp b/scumm/script_v8.cpp
index 3a3b4a8fb6..27f2cc0093 100644
--- a/scumm/script_v8.cpp
+++ b/scumm/script_v8.cpp
@@ -251,7 +251,7 @@ void ScummEngine_v8::setupOpcodes() {
OPCODE(o6_pickupObject),
OPCODE(o6_setBoxFlags),
/* A8 */
- OPCODE(o8_createBoxMatrix),
+ OPCODE(o6_createBoxMatrix),
OPCODE(o6_invalid),
OPCODE(o8_resourceRoutines),
OPCODE(o8_roomOps),
@@ -779,19 +779,6 @@ void ScummEngine_v8::o8_cursorCommand() {
VAR(VAR_USERPUT) = _userPut;
}
-void ScummEngine_v8::o8_createBoxMatrix() {
- int i;
- Actor *a;
-
- createBoxMatrix();
-
- for (i = 1; i < _numActors; i++) {
- a = &_actors[i];
- if (a && a->isInCurrentRoom())
- a->adjustActorPos();
- }
-}
-
void ScummEngine_v8::o8_resourceRoutines() {
byte subOp = fetchScriptByte();
int resid = pop();