[Scummvm-cvs-logs] SF.net SVN: scummvm:[40425] scummvm/trunk/engines/kyra/lol.cpp

lordhoto at users.sourceforge.net lordhoto at users.sourceforge.net
Sun May 10 19:22:09 CEST 2009


Revision: 40425
          http://scummvm.svn.sourceforge.net/scummvm/?rev=40425&view=rev
Author:   lordhoto
Date:     2009-05-10 17:22:08 +0000 (Sun, 10 May 2009)

Log Message:
-----------
Fix accidental assignment in if condition.

Modified Paths:
--------------
    scummvm/trunk/engines/kyra/lol.cpp

Modified: scummvm/trunk/engines/kyra/lol.cpp
===================================================================
--- scummvm/trunk/engines/kyra/lol.cpp	2009-05-10 17:18:59 UTC (rev 40424)
+++ scummvm/trunk/engines/kyra/lol.cpp	2009-05-10 17:22:08 UTC (rev 40425)
@@ -2377,7 +2377,7 @@
 	//uint8 pal2[768];
 	//uint8 pal3[768];
 
-	if (_currentLevel = 11 && !(_freezeStateFlags & 4)) {
+	if (_currentLevel == 11 && !(_freezeStateFlags & 4)) {
 		for (int i = 1; i < 384; i++) {
 
 		///////// TODO


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list