aboutsummaryrefslogtreecommitdiff
path: root/simon/debug.cpp
diff options
context:
space:
mode:
authorTravis Howell2005-10-09 09:03:37 +0000
committerTravis Howell2005-10-09 09:03:37 +0000
commit6b897dd90b26baf4453cd116ed25bb122a3232c8 (patch)
tree457ced7d92db4414a43338c07cb04ac258863408 /simon/debug.cpp
parentd67009d5e5c4460a3d8ec2c4d9d7f70ce4bc6be2 (diff)
downloadscummvm-rg350-6b897dd90b26baf4453cd116ed25bb122a3232c8.tar.gz
scummvm-rg350-6b897dd90b26baf4453cd116ed25bb122a3232c8.tar.bz2
scummvm-rg350-6b897dd90b26baf4453cd116ed25bb122a3232c8.zip
Add more stubs for FF.
Disable scale images in FF for now. svn-id: r18987
Diffstat (limited to 'simon/debug.cpp')
-rw-r--r--simon/debug.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/simon/debug.cpp b/simon/debug.cpp
index 1cd466eddc..27e666f1fc 100644
--- a/simon/debug.cpp
+++ b/simon/debug.cpp
@@ -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 != '|')