diff options
author | Travis Howell | 2002-11-20 11:26:53 +0000 |
---|---|---|
committer | Travis Howell | 2002-11-20 11:26:53 +0000 |
commit | 2bba56a34f1a8cfd13c3f38cb53b1f15596a20f9 (patch) | |
tree | 3a7a089a50e055fcfdf2ea4168c1ca6f70e225df | |
parent | aa7f3b6df6c5b62f31427a3218e1b9d4c187230d (diff) | |
download | scummvm-rg350-2bba56a34f1a8cfd13c3f38cb53b1f15596a20f9.tar.gz scummvm-rg350-2bba56a34f1a8cfd13c3f38cb53b1f15596a20f9.tar.bz2 scummvm-rg350-2bba56a34f1a8cfd13c3f38cb53b1f15596a20f9.zip |
Another ooops
svn-id: r5635
-rw-r--r-- | simon/debug.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/simon/debug.cpp b/simon/debug.cpp index 8ba437e3da..e8f565f74b 100644 --- a/simon/debug.cpp +++ b/simon/debug.cpp @@ -44,7 +44,7 @@ byte *SimonState::dumpOpcode(byte *p) st = s = simon1dos_opcode_name_table[opcode]; } else if (_game == GAME_SIMON1TALKIE || _game == GAME_SIMON1WIN) { st = s = simon1talkie_opcode_name_table[opcode]; - } else if (_game == GAME_SIMON2WIN) { + } else if (_game == GAME_SIMON2TALKIE || _game == GAME_SIMON2WIN) { st = s = simon2talkie_opcode_name_table[opcode]; } else { st = s = simon2dos_opcode_name_table[opcode]; |