[Scummvm-cvs-logs] SF.net SVN: scummvm: [30313] scummvm/trunk/engines/parallaction/dialogue. cpp

peres001 at users.sourceforge.net peres001 at users.sourceforge.net
Sun Jan 6 21:46:03 CET 2008


Revision: 30313
          http://scummvm.svn.sourceforge.net/scummvm/?rev=30313&view=rev
Author:   peres001
Date:     2008-01-06 12:46:03 -0800 (Sun, 06 Jan 2008)

Log Message:
-----------
Fixes wrong type.

Modified Paths:
--------------
    scummvm/trunk/engines/parallaction/dialogue.cpp

Modified: scummvm/trunk/engines/parallaction/dialogue.cpp
===================================================================
--- scummvm/trunk/engines/parallaction/dialogue.cpp	2008-01-06 20:42:28 UTC (rev 30312)
+++ scummvm/trunk/engines/parallaction/dialogue.cpp	2008-01-06 20:46:03 UTC (rev 30313)
@@ -162,7 +162,7 @@
 	// display suitable answers
 	if (((a->_yesFlags & flags) == a->_yesFlags) && ((a->_noFlags & ~flags) == a->_noFlags)) {
 
-		uint id = _vm->_gfx->setDialogueBalloon(a->_text, 1, 3);
+		int id = _vm->_gfx->setDialogueBalloon(a->_text, 1, 3);
 		assert(id >= 0);
 		_visAnswers[id] = i;
 


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