More stubs
svn-id: r14918
This commit is contained in:
parent
42277f416f
commit
4ace797f4e
4 changed files with 24 additions and 5 deletions
|
@ -136,7 +136,7 @@ void ScummEngine_v80he::setupOpcodes() {
|
|||
OPCODE(o72_wordArrayWrite),
|
||||
/* 48 */
|
||||
OPCODE(o6_invalid),
|
||||
OPCODE(o6_invalid),
|
||||
OPCODE(o80_unknown49),
|
||||
OPCODE(o6_invalid),
|
||||
OPCODE(o72_wordArrayIndexedWrite),
|
||||
/* 4C */
|
||||
|
@ -378,6 +378,14 @@ const char *ScummEngine_v80he::getOpcodeDesc(byte i) {
|
|||
return _opcodesV80he[i].desc;
|
||||
}
|
||||
|
||||
void ScummEngine_v80he::o80_unknown49() {
|
||||
int a = pop();
|
||||
int b = pop();
|
||||
|
||||
push (0);
|
||||
debug(1,"o80_unknown49 stub (%d, %d)", b, a);
|
||||
}
|
||||
|
||||
void ScummEngine_v80he::o80_setState() {
|
||||
int state = pop();
|
||||
int obj = pop();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue