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

thebluegr at users.sourceforge.net thebluegr at users.sourceforge.net
Tue Apr 29 16:04:52 CEST 2008


Revision: 31768
          http://scummvm.svn.sourceforge.net/scummvm/?rev=31768&view=rev
Author:   thebluegr
Date:     2008-04-29 07:04:52 -0700 (Tue, 29 Apr 2008)

Log Message:
-----------
Fixed MSVC warning

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

Modified: scummvm/trunk/engines/kyra/text_v3.cpp
===================================================================
--- scummvm/trunk/engines/kyra/text_v3.cpp	2008-04-28 21:32:23 UTC (rev 31767)
+++ scummvm/trunk/engines/kyra/text_v3.cpp	2008-04-29 14:04:52 UTC (rev 31768)
@@ -559,7 +559,7 @@
 void KyraEngine_v3::setDlgIndex(uint16 index) {
 	debugC(9, kDebugLevelMain, "KyraEngine_v3::setDlgIndex(%d)", index);
 	if (_mainCharacter.dlgIndex != index) {
-		Common::set_to(_newSceneDlgState, _newSceneDlgState+ARRAYSIZE(_newSceneDlgState), false);
+		Common::set_to(_newSceneDlgState, _newSceneDlgState+ARRAYSIZE(_newSceneDlgState), 0);
 		memset(_conversationState, -1, sizeof(_conversationState));
 		_chatAltFlag = false;
 		_mainCharacter.dlgIndex = index;


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