diff options
| -rw-r--r-- | simon/res.cpp | 2 | ||||
| -rw-r--r-- | simon/verb.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/simon/res.cpp b/simon/res.cpp index 6cf2d219c4..a521a33127 100644 --- a/simon/res.cpp +++ b/simon/res.cpp @@ -257,7 +257,7 @@ byte *SimonState::readSingleOpcode(File *in, byte *ptr) table = opcode_arg_table_simon1win; break; case GAME_SIMON2DOS: - table = opcode_arg_table_simon2win; + table = opcode_arg_table_simon2dos; printf("right opcode table\n"); break; case GAME_SIMON2WIN: diff --git a/simon/verb.cpp b/simon/verb.cpp index a81627bff2..01dff66359 100644 --- a/simon/verb.cpp +++ b/simon/verb.cpp @@ -112,7 +112,7 @@ void SimonState::hitareaChangedHelper() { FillOrCopyStruct *fcs; - if ((_game == GAME_SIMON2WIN) || (_game == GAME_SIMON2WIN)) { + if ((_game == GAME_SIMON2WIN) || (_game == GAME_SIMON2DOS)) { if (_bit_array[4] & 0x8000) return; } |
