[Scummvm-cvs-logs] CVS: scummvm/graphics animation.cpp,1.13,1.14

Max Horn fingolfin at users.sourceforge.net
Sun Nov 28 15:04:02 CET 2004


Update of /cvsroot/scummvm/scummvm/graphics
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20712/graphics

Modified Files:
	animation.cpp 
Log Message:
Changed parameter order of SoundMixer::playInputStream to match that of playRaw

Index: animation.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/graphics/animation.cpp,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- animation.cpp	27 Nov 2004 15:58:06 -0000	1.13
+++ animation.cpp	28 Nov 2004 23:02:05 -0000	1.14
@@ -133,7 +133,7 @@
 	bgSoundStream = AudioStream::openStreamFile(name);
 
 	if (bgSoundStream != NULL) {
-		_snd->playInputStream(&bgSound, bgSoundStream, false, 255, 0, -1, false);
+		_snd->playInputStream(&bgSound, bgSoundStream, false, -1, 255, 0, false);
 	} else {
 		warning("Cutscene: Could not open Audio Track for %s", name);
 	}





More information about the Scummvm-git-logs mailing list