More stubs

svn-id: r14918
This commit is contained in:
Travis Howell 2004-09-06 01:54:24 +00:00
parent 42277f416f
commit 4ace797f4e
4 changed files with 24 additions and 5 deletions

View file

@ -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();