Add more stubs for FF.
Disable scale images in FF for now. svn-id: r18987
This commit is contained in:
parent
d67009d5e5
commit
6b897dd90b
7 changed files with 293 additions and 39 deletions
|
@ -47,7 +47,7 @@ const byte *SimonEngine::dumpOpcode(const byte *p) {
|
|||
st = s = simon1dos_opcode_name_table[opcode];
|
||||
}
|
||||
if (s == NULL) {
|
||||
error("INVALID OPCODE %d", opcode);
|
||||
//error("INVALID OPCODE %d", opcode);
|
||||
return NULL;
|
||||
}
|
||||
while (*st != '|')
|
||||
|
@ -186,10 +186,12 @@ void SimonEngine::dump_video_script(const byte *src, bool one_opcode_only) {
|
|||
return;
|
||||
}
|
||||
|
||||
if (!(_game & GF_SIMON2)) {
|
||||
strn = str = simon1_video_opcode_name_table[opcode];
|
||||
} else {
|
||||
if (_game == GAME_FEEBLEFILES) {
|
||||
strn = str = feeblefiles_video_opcode_name_table[opcode];
|
||||
} else if (_game & GF_SIMON2) {
|
||||
strn = str = simon2_video_opcode_name_table[opcode];
|
||||
} else {
|
||||
strn = str = simon1_video_opcode_name_table[opcode];
|
||||
}
|
||||
|
||||
while (*strn != '|')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue