[Scummvm-cvs-logs] SF.net SVN: scummvm:[41660] scummvm/trunk/engines/agi/sound.cpp

thebluegr at users.sourceforge.net thebluegr at users.sourceforge.net
Fri Jun 19 09:56:30 CEST 2009


Revision: 41660
          http://scummvm.svn.sourceforge.net/scummvm/?rev=41660&view=rev
Author:   thebluegr
Date:     2009-06-19 07:56:30 +0000 (Fri, 19 Jun 2009)

Log Message:
-----------
Fixed a warning about an uninitialized variable

Modified Paths:
--------------
    scummvm/trunk/engines/agi/sound.cpp

Modified: scummvm/trunk/engines/agi/sound.cpp
===================================================================
--- scummvm/trunk/engines/agi/sound.cpp	2009-06-19 03:36:20 UTC (rev 41659)
+++ scummvm/trunk/engines/agi/sound.cpp	2009-06-19 07:56:30 UTC (rev 41660)
@@ -833,7 +833,7 @@
 };
 
 void SoundMgr::playCoCoSound() {
-	int i;
+	int i = 0;
 	CoCoNote note;
 
 	do {


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