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

thebluegr at users.sourceforge.net thebluegr at users.sourceforge.net
Sun Oct 31 21:57:51 CET 2010


Revision: 53986
          http://scummvm.svn.sourceforge.net/scummvm/?rev=53986&view=rev
Author:   thebluegr
Date:     2010-10-31 20:57:50 +0000 (Sun, 31 Oct 2010)

Log Message:
-----------
SCI: Removing obsolete function parameter

Modified Paths:
--------------
    scummvm/trunk/engines/sci/engine/savegame.cpp
    scummvm/trunk/engines/sci/sound/soundcmd.h

Modified: scummvm/trunk/engines/sci/engine/savegame.cpp
===================================================================
--- scummvm/trunk/engines/sci/engine/savegame.cpp	2010-10-31 20:51:35 UTC (rev 53985)
+++ scummvm/trunk/engines/sci/engine/savegame.cpp	2010-10-31 20:57:50 UTC (rev 53986)
@@ -530,7 +530,7 @@
 	_music->saveLoadWithSerializer(s);
 }
 
-void SoundCommandParser::reconstructPlayList(int version) {
+void SoundCommandParser::reconstructPlayList() {
 	Common::StackLock lock(_music->_mutex);
 
 	const MusicList::iterator end = _music->getPlayListEnd();
@@ -777,7 +777,7 @@
 	if (g_sci->_gfxPorts)
 		g_sci->_gfxPorts->reset();
 
-	g_sci->_soundCmd->reconstructPlayList(meta.version);
+	g_sci->_soundCmd->reconstructPlayList();
 
 	// Message state:
 	delete s->_msgState;

Modified: scummvm/trunk/engines/sci/sound/soundcmd.h
===================================================================
--- scummvm/trunk/engines/sci/sound/soundcmd.h	2010-10-31 20:51:35 UTC (rev 53985)
+++ scummvm/trunk/engines/sci/sound/soundcmd.h	2010-10-31 20:57:50 UTC (rev 53986)
@@ -53,7 +53,7 @@
 	// Functions used for game state loading
 	void clearPlayList();
 	void syncPlayList(Common::Serializer &s);
-	void reconstructPlayList(int savegame_version);
+	void reconstructPlayList();
 
 	// Functions used for the ScummVM menus
 	void setMasterVolume(int vol);


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