diff options
-rw-r--r-- | simon/simon.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/simon/simon.cpp b/simon/simon.cpp index d046ca41d6..6f008afe77 100644 --- a/simon/simon.cpp +++ b/simon/simon.cpp @@ -2647,7 +2647,8 @@ void SimonState::timer_proc1() { _timer_4++; - if ((_game & GAME_SIMON2) && (_lock_word & 0x80E9 || _lock_word & 2)) { + if (_game & GAME_SIMON2) ( + if (_lock_word & 0x80E9 || _lock_word & 2) return; } else if (_lock_word & 0xC0E9 || _lock_word & 2) return; |