diff options
-rw-r--r-- | scumm/intern.h | 1 | ||||
-rw-r--r-- | scumm/script_v8.cpp | 9 |
2 files changed, 1 insertions, 9 deletions
diff --git a/scumm/intern.h b/scumm/intern.h index 324568aea8..db3ea1c30d 100644 --- a/scumm/intern.h +++ b/scumm/intern.h @@ -412,7 +412,6 @@ protected: /* Version 8 script opcodes */ void o8_mod(); - void o8_breakHereVar(); void o8_wait(); void o8_dim(); diff --git a/scumm/script_v8.cpp b/scumm/script_v8.cpp index f26fa8026c..b8e2468c11 100644 --- a/scumm/script_v8.cpp +++ b/scumm/script_v8.cpp @@ -186,7 +186,7 @@ void Scumm_v8::setupOpcodes() OPCODE(o6_jump), OPCODE(o6_breakHere), /* 68 */ - OPCODE(o8_breakHereVar), + OPCODE(o6_delayFrames), OPCODE(o8_wait), OPCODE(o6_delay), // FIXME - is the delay period right? OPCODE(o6_delayLonger), // FIXME - is the delay period right? @@ -581,13 +581,6 @@ void Scumm_v8::o8_mod() push(pop() % a); } -void Scumm_v8::o8_breakHereVar() -{ - int var = pop(); - warning("o8_breakHereVar(%d) NYI", var); - o6_breakHere(); -} - void Scumm_v8::o8_wait() { // TODO |