diff options
author | Paweł Kołodziejski | 2003-04-20 16:32:44 +0000 |
---|---|---|
committer | Paweł Kołodziejski | 2003-04-20 16:32:44 +0000 |
commit | 7acad3a0a0c541ba3f18d66292e5e7289afe3ab2 (patch) | |
tree | 96289bef4e1646e05da225f48ddb2c313b5b6280 | |
parent | 79189f2e12ef24312848d152a599a65373447b37 (diff) | |
download | scummvm-rg350-7acad3a0a0c541ba3f18d66292e5e7289afe3ab2.tar.gz scummvm-rg350-7acad3a0a0c541ba3f18d66292e5e7289afe3ab2.tar.bz2 scummvm-rg350-7acad3a0a0c541ba3f18d66292e5e7289afe3ab2.zip |
next two missed opcodes, ah :)
svn-id: r7034
-rw-r--r-- | scumm/script_v2.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/script_v2.cpp b/scumm/script_v2.cpp index 6b295f48d4..c2b7d5f9ab 100644 --- a/scumm/script_v2.cpp +++ b/scumm/script_v2.cpp @@ -248,7 +248,7 @@ void Scumm_v2::setupOpcodes() { OPCODE(o2_addDirect), OPCODE(o5_dummy), /* AC */ - OPCODE(o5_expression), //? + OPCODE(o5_delay), OPCODE(o5_putActorInRoom), OPCODE(o2_waitForSentence), OPCODE(o2_ifNotState40), @@ -261,7 +261,7 @@ void Scumm_v2::setupOpcodes() { OPCODE(o5_getDist), OPCODE(o5_findObject), OPCODE(o5_walkActorToObject), - OPCODE(o5_startObject), //? + OPCODE(o2_setState20), /* B8 */ OPCODE(o5_lessOrEqual), OPCODE(o5_doSentence), |