o5_dummy -> o2_dummy (it's not used by the V5 code at all...)

svn-id: r7297
This commit is contained in:
Max Horn 2003-05-04 00:29:52 +00:00
parent 4065f23844
commit 0ce5658d66
3 changed files with 12 additions and 12 deletions

View file

@ -148,7 +148,7 @@ void Scumm_v2::setupOpcodes() {
OPCODE(o5_add),
OPCODE(o2_setBitVar),
/* 5C */
OPCODE(o5_dummy),
OPCODE(o2_dummy),
OPCODE(o2_ifClassOfIs),
OPCODE(o2_walkActorTo),
OPCODE(o2_ifNotState02),
@ -166,11 +166,11 @@ void Scumm_v2::setupOpcodes() {
OPCODE(o5_isScriptRunning),
OPCODE(o2_setOwnerOf),
OPCODE(o2_subDirect),
OPCODE(o5_dummy),
OPCODE(o2_dummy),
/* 6C */
OPCODE(o2_getObjY),
OPCODE(o5_putActorInRoom),
OPCODE(o5_dummy),
OPCODE(o2_dummy),
OPCODE(o2_ifState04),
/* 70 */
OPCODE(o5_lights),
@ -246,7 +246,7 @@ void Scumm_v2::setupOpcodes() {
OPCODE(o2_notEqualZero),
OPCODE(o2_setOwnerOf),
OPCODE(o2_addDirect),
OPCODE(o5_dummy),
OPCODE(o2_dummy),
/* AC */
OPCODE(o2_drawSentence),
OPCODE(o5_putActorInRoom),
@ -308,7 +308,7 @@ void Scumm_v2::setupOpcodes() {
OPCODE(o5_add),
OPCODE(o2_setBitVar),
/* DC */
OPCODE(o5_dummy),
OPCODE(o2_dummy),
OPCODE(o2_ifClassOfIs),
OPCODE(o2_walkActorTo),
OPCODE(o2_ifNotState02),
@ -326,11 +326,11 @@ void Scumm_v2::setupOpcodes() {
OPCODE(o5_isScriptRunning),
OPCODE(o2_setOwnerOf),
OPCODE(o2_subDirect),
OPCODE(o5_dummy),
OPCODE(o2_dummy),
/* EC */
OPCODE(o2_getObjY),
OPCODE(o5_putActorInRoom),
OPCODE(o5_dummy),
OPCODE(o2_dummy),
OPCODE(o2_ifState04),
/* F0 */
OPCODE(o5_lights),
@ -1186,3 +1186,7 @@ void Scumm_v2::o2_delay() {
warning("TODO: o2_delay(%d)", delay);
}
void Scumm_v2::o2_dummy() {
warning("o2_dummy invoked (opcode %d)", _opcode);
}