aboutsummaryrefslogtreecommitdiff
path: root/simon
diff options
context:
space:
mode:
authorTravis Howell2002-12-19 14:43:17 +0000
committerTravis Howell2002-12-19 14:43:17 +0000
commitfb408bb00dd61a292b02cda6a54a3cecb900ff71 (patch)
treeb4ce4490296fb8a832746f60511cbcc06b4338dc /simon
parentf1ee93b898e88de2948b0cb754be85f196ca23dd (diff)
downloadscummvm-rg350-fb408bb00dd61a292b02cda6a54a3cecb900ff71.tar.gz
scummvm-rg350-fb408bb00dd61a292b02cda6a54a3cecb900ff71.tar.bz2
scummvm-rg350-fb408bb00dd61a292b02cda6a54a3cecb900ff71.zip
Fix error in last commit
svn-id: r6025
Diffstat (limited to 'simon')
-rw-r--r--simon/simon.cpp3
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;