[Scummvm-cvs-logs] SF.net SVN: scummvm:[43934] scummvm/trunk/engines/teenagent/callbacks.cpp

thebluegr at users.sourceforge.net thebluegr at users.sourceforge.net
Fri Sep 4 09:09:49 CEST 2009


Revision: 43934
          http://scummvm.svn.sourceforge.net/scummvm/?rev=43934&view=rev
Author:   thebluegr
Date:     2009-09-04 07:09:48 +0000 (Fri, 04 Sep 2009)

Log Message:
-----------
Silenced an MSVC warning about an unexpected parameter, and added a FIXME

Modified Paths:
--------------
    scummvm/trunk/engines/teenagent/callbacks.cpp

Modified: scummvm/trunk/engines/teenagent/callbacks.cpp
===================================================================
--- scummvm/trunk/engines/teenagent/callbacks.cpp	2009-09-04 05:18:12 UTC (rev 43933)
+++ scummvm/trunk/engines/teenagent/callbacks.cpp	2009-09-04 07:09:48 UTC (rev 43934)
@@ -1154,7 +1154,10 @@
 		loadScene(24, 230, 170, 1);
 		playSound(52, 3);
 		playAnimation(601);
-		moveTo(230, 179, 3);
+		// FIXME: the third parameter here is a number, but the function expects a boolean
+		// Changing it to "1" for now (i.e. true)
+		//moveTo(230, 179, 3);
+		moveTo(230, 179, 1);
 		if (!CHECK_FLAG(0xDBA4, 1))
 			displayMessage(0x37ea); //it's kinda dark here
 		return true;


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