aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorJames Brown2002-12-26 07:33:47 +0000
committerJames Brown2002-12-26 07:33:47 +0000
commit608812f683ae8d2bd070c24485c4876189ac8f60 (patch)
treedd7f247e8e84e252bc6b9bae8c9081320441dc89 /scumm
parent3ab9233d60bc15088b67adcf4085d0922b8aa875 (diff)
downloadscummvm-rg350-608812f683ae8d2bd070c24485c4876189ac8f60.tar.gz
scummvm-rg350-608812f683ae8d2bd070c24485c4876189ac8f60.tar.bz2
scummvm-rg350-608812f683ae8d2bd070c24485c4876189ac8f60.zip
CMI opcode work
svn-id: r6168
Diffstat (limited to 'scumm')
-rw-r--r--scumm/script_v8.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/scumm/script_v8.cpp b/scumm/script_v8.cpp
index c1fc0749a8..f2f443c8c2 100644
--- a/scumm/script_v8.cpp
+++ b/scumm/script_v8.cpp
@@ -251,9 +251,9 @@ void Scumm_v8::setupOpcodes()
OPCODE(o6_animateActor),
OPCODE(o6_doSentence),
OPCODE(o6_pickupObject),
- OPCODE(o6_invalid),
+ OPCODE(o6_setBoxFlags),
/* A8 */
- OPCODE(o6_invalid),
+ OPCODE(o6_createBoxMatrix), // fixme?
OPCODE(o6_invalid),
OPCODE(o8_resourceRoutines),
OPCODE(o8_roomOps),
@@ -314,7 +314,7 @@ void Scumm_v8::setupOpcodes()
OPCODE(o6_invalid),
/* D8 */
OPCODE(o6_kernelGetFunctions),
- OPCODE(o6_invalid),
+ OPCODE(o6_isActorInBox),
OPCODE(o6_getVerbEntrypoint),
OPCODE(o6_getActorFromXY),
/* DC */
@@ -1245,7 +1245,7 @@ void Scumm_v8::o8_startVideo()
ScummRenderer * sr = new ScummRenderer(this, 1000/14);
SmushPlayer * sp = new SmushPlayer(sr);
- sp->play((char*)_scriptPointer, dirName);
+ //sp->play((char*)_scriptPointer, dirName);
_scriptPointer += len + 1;
}