mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-17 23:44:22 +00:00
chenged opcode o8_breakHerVar to o6_delayFrames
svn-id: r6139
This commit is contained in:
parent
3dd648b8c8
commit
7c7af18bc9
@ -412,7 +412,6 @@ protected:
|
||||
|
||||
/* Version 8 script opcodes */
|
||||
void o8_mod();
|
||||
void o8_breakHereVar();
|
||||
void o8_wait();
|
||||
|
||||
void o8_dim();
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user