[Scummvm-cvs-logs] CVS: scummvm/simon simon.cpp,1.122,1.123

Travis Howell kirben at users.sourceforge.net
Thu Dec 19 06:44:01 CET 2002


Update of /cvsroot/scummvm/scummvm/simon
In directory sc8-pr-cvs1:/tmp/cvs-serv28116/simon

Modified Files:
	simon.cpp 
Log Message:

Fix error in last commit


Index: simon.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/simon/simon.cpp,v
retrieving revision 1.122
retrieving revision 1.123
diff -u -d -r1.122 -r1.123
--- simon.cpp	19 Dec 2002 14:34:26 -0000	1.122
+++ simon.cpp	19 Dec 2002 14:43:17 -0000	1.123
@@ -2647,7 +2647,8 @@
 {
 	_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;





More information about the Scummvm-git-logs mailing list