From 6b897dd90b26baf4453cd116ed25bb122a3232c8 Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Sun, 9 Oct 2005 09:03:37 +0000 Subject: Add more stubs for FF. Disable scale images in FF for now. svn-id: r18987 --- simon/debug.cpp | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'simon/debug.cpp') 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 != '|') -- cgit v1.2.3