[Scummvm-cvs-logs] SF.net SVN: scummvm: [21591] scummvm/trunk/engines/simon

kirben at users.sourceforge.net kirben at users.sourceforge.net
Tue Apr 4 04:29:12 CEST 2006


Revision: 21591
Author:   kirben
Date:     2006-04-04 04:28:37 -0700 (Tue, 04 Apr 2006)
ViewCVS:  http://svn.sourceforge.net/scummvm/?rev=21591&view=rev

Log Message:
-----------
_noRightClick got reversed in setVerb for FF

Modified Paths:
--------------
    scummvm/trunk/engines/simon/simon.cpp
    scummvm/trunk/engines/simon/verb.cpp
Modified: scummvm/trunk/engines/simon/simon.cpp
===================================================================
--- scummvm/trunk/engines/simon/simon.cpp	2006-04-04 11:06:48 UTC (rev 21590)
+++ scummvm/trunk/engines/simon/simon.cpp	2006-04-04 11:28:37 UTC (rev 21591)
@@ -1726,7 +1726,7 @@
 		}
 
 		if (_rightButtonDown) {
-			_rightButtonDown = false;
+			_rightButtonDown = 0;
 			setVerb(NULL);
 		}
 	}

Modified: scummvm/trunk/engines/simon/verb.cpp
===================================================================
--- scummvm/trunk/engines/simon/verb.cpp	2006-04-04 11:06:48 UTC (rev 21590)
+++ scummvm/trunk/engines/simon/verb.cpp	2006-04-04 11:28:37 UTC (rev 21591)
@@ -443,7 +443,7 @@
 void SimonEngine::setVerb(HitArea *ha) {
 	if (getGameType() == GType_FF) {
 		int cursor = _mouseCursor;
-		if (!_noRightClick)
+		if (_noRightClick)
 			return;
 
 		if (cursor > 13)


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