diff options
author | Filippos Karapetis | 2010-10-31 20:57:50 +0000 |
---|---|---|
committer | Filippos Karapetis | 2010-10-31 20:57:50 +0000 |
commit | 43221a32539b707361efa9a3be4691fc1d943554 (patch) | |
tree | b0dda2fe14a803d78e3b61c5b711cffd91b91466 /engines/sci/engine | |
parent | 1421312cf831a9d2d051151a927e6efd32e8873c (diff) | |
download | scummvm-rg350-43221a32539b707361efa9a3be4691fc1d943554.tar.gz scummvm-rg350-43221a32539b707361efa9a3be4691fc1d943554.tar.bz2 scummvm-rg350-43221a32539b707361efa9a3be4691fc1d943554.zip |
SCI: Removing obsolete function parameter
svn-id: r53986
Diffstat (limited to 'engines/sci/engine')
-rw-r--r-- | engines/sci/engine/savegame.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/engine/savegame.cpp b/engines/sci/engine/savegame.cpp index 4d55febbf9..0b6caa515b 100644 --- a/engines/sci/engine/savegame.cpp +++ b/engines/sci/engine/savegame.cpp @@ -530,7 +530,7 @@ void SoundCommandParser::syncPlayList(Common::Serializer &s) { _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 @@ void gamestate_restore(EngineState *s, Common::SeekableReadStream *fh) { if (g_sci->_gfxPorts) g_sci->_gfxPorts->reset(); - g_sci->_soundCmd->reconstructPlayList(meta.version); + g_sci->_soundCmd->reconstructPlayList(); // Message state: delete s->_msgState; |