[Scummvm-cvs-logs] SF.net SVN: scummvm:[49101] scummvm/trunk/engines/sci/sound/soundcmd.cpp

m_kiewitz at users.sourceforge.net m_kiewitz at users.sourceforge.net
Wed May 19 16:54:39 CEST 2010


Revision: 49101
          http://scummvm.svn.sourceforge.net/scummvm/?rev=49101&view=rev
Author:   m_kiewitz
Date:     2010-05-19 14:54:39 +0000 (Wed, 19 May 2010)

Log Message:
-----------
SCI: removed cmdStopAllSounds(), can't be right - added FIXME - fixes iceman room 14 music stopping within 1-2 seconds

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

Modified: scummvm/trunk/engines/sci/sound/soundcmd.cpp
===================================================================
--- scummvm/trunk/engines/sci/sound/soundcmd.cpp	2010-05-19 14:45:56 UTC (rev 49100)
+++ scummvm/trunk/engines/sci/sound/soundcmd.cpp	2010-05-19 14:54:39 UTC (rev 49101)
@@ -927,6 +927,11 @@
 #ifndef USE_OLD_MUSIC_FUNCTIONS
 	Common::StackLock(_music->_mutex);
 
+	// FIXME: this can't be right, it's called in iceman (room 14) when the door sound has done playing
+	//         stopping sounds can't be right, because music is starting afterwards in ssci. Maybe it actually means
+	//		   "resume play of queued sound" or something like that
+	return;
+
 	const MusicList::iterator end = _music->getPlayListEnd();
 	for (MusicList::iterator i = _music->getPlayListStart(); i != end; ++i) {
 		if (_soundVersion <= SCI_VERSION_0_LATE) {


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