aboutsummaryrefslogtreecommitdiff
path: root/simon/debug.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'simon/debug.cpp')
-rw-r--r--simon/debug.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/simon/debug.cpp b/simon/debug.cpp
index 40c105151e..8692c22189 100644
--- a/simon/debug.cpp
+++ b/simon/debug.cpp
@@ -37,7 +37,9 @@ const byte *SimonEngine::dumpOpcode(const byte *p) {
opcode = *p++;
if (opcode == 255)
return NULL;
- if (_game & GF_SIMON2 && _game & GF_TALKIE) {
+ if (_game == GAME_FEEBLEFILES) {
+ st = s = feeblefiles_opcode_name_table[opcode];
+ } else if (_game & GF_SIMON2 && _game & GF_TALKIE) {
st = s = simon2talkie_opcode_name_table[opcode];
} else if (_game & GF_TALKIE) {
st = s = simon1talkie_opcode_name_table[opcode];