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

fingolfin at users.sourceforge.net fingolfin at users.sourceforge.net
Sat Jan 16 22:34:36 CET 2010


Revision: 47333
          http://scummvm.svn.sourceforge.net/scummvm/?rev=47333&view=rev
Author:   fingolfin
Date:     2010-01-16 21:34:36 +0000 (Sat, 16 Jan 2010)

Log Message:
-----------
cleanup

Modified Paths:
--------------
    scummvm/trunk/engines/groovie/music.cpp
    scummvm/trunk/engines/m4/mads_anim.cpp

Modified: scummvm/trunk/engines/groovie/music.cpp
===================================================================
--- scummvm/trunk/engines/groovie/music.cpp	2010-01-16 21:00:15 UTC (rev 47332)
+++ scummvm/trunk/engines/groovie/music.cpp	2010-01-16 21:34:36 UTC (rev 47333)
@@ -405,7 +405,7 @@
 		loadTimbres(gtlName + ".ad");
 
 		// Setup the percussion channel
-		for (unsigned int i = 0; i < _timbres.size(); i++) {
+		for (uint i = 0; i < _timbres.size(); i++) {
 			if (_timbres[i].bank == 0x7F)
 				setTimbreAD(9, _timbres[i]);
 		}

Modified: scummvm/trunk/engines/m4/mads_anim.cpp
===================================================================
--- scummvm/trunk/engines/m4/mads_anim.cpp	2010-01-16 21:00:15 UTC (rev 47332)
+++ scummvm/trunk/engines/m4/mads_anim.cpp	2010-01-16 21:34:36 UTC (rev 47333)
@@ -573,8 +573,7 @@
 		assert(_vm->_resourceManager->resourceExists(aaFile.filenames[seriesCtr].c_str()));
 
 	// Start sound
-	if (aaFile.flags & AA_HAS_SOUND)
-	{
+	if (aaFile.flags & AA_HAS_SOUND) {
 		char buffer[100];
 		strcpy(buffer, aaFile.soundName.c_str());
 		buffer[0] = 'A';	// A for AdLib resource
@@ -720,7 +719,7 @@
 	Common::MemoryReadStream stream2(*getItemStream(2));
 
 	Common::MemoryReadStream stream(*getItemStream(0));
-printf("ss %d %d %d\n", stream.size(), stream1.size(), stream2.size());
+
 	seriesCount = stream.readUint16LE();
 	frameCount = stream.readUint16LE();
 	frameEntryCount = stream.readUint16LE();


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