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

thebluegr at users.sourceforge.net thebluegr at users.sourceforge.net
Sun Apr 20 19:15:31 CEST 2008


Revision: 31619
          http://scummvm.svn.sourceforge.net/scummvm/?rev=31619&view=rev
Author:   thebluegr
Date:     2008-04-20 10:15:31 -0700 (Sun, 20 Apr 2008)

Log Message:
-----------
Compilation fixes by lordhoto

Modified Paths:
--------------
    scummvm/trunk/engines/made/pmvplayer.cpp
    scummvm/trunk/engines/made/resource.cpp

Modified: scummvm/trunk/engines/made/pmvplayer.cpp
===================================================================
--- scummvm/trunk/engines/made/pmvplayer.cpp	2008-04-20 17:07:23 UTC (rev 31618)
+++ scummvm/trunk/engines/made/pmvplayer.cpp	2008-04-20 17:15:31 UTC (rev 31619)
@@ -61,7 +61,7 @@
 		_fd->read(frameData, chunkSize);
 
 		byte *audioData = frameData + READ_LE_UINT32(frameData + 8) - 8;
-		uint16 chunkSize = READ_LE_UINT16(audioData + 4);
+		chunkSize = READ_LE_UINT16(audioData + 4);
 		uint16 chunkCount = READ_LE_UINT16(audioData + 6);
 
 		if (chunkCount > 50) break;	// FIXME: this is a hack

Modified: scummvm/trunk/engines/made/resource.cpp
===================================================================
--- scummvm/trunk/engines/made/resource.cpp	2008-04-20 17:07:23 UTC (rev 31618)
+++ scummvm/trunk/engines/made/resource.cpp	2008-04-20 17:15:31 UTC (rev 31619)
@@ -60,7 +60,7 @@
 	uint16 pixelOffs = sourceS->readUint16LE();
 	uint16 maskOffs = sourceS->readUint16LE();
 	uint16 lineSize = sourceS->readUint16LE();
-	uint16 u = sourceS->readUint16LE();
+	/*uint16 u = */sourceS->readUint16LE();
 	uint16 width = sourceS->readUint16LE();
 	uint16 height = sourceS->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