[Scummvm-cvs-logs] CVS: scummvm/scumm/smush smush_mixer.cpp,1.1,1.2

Jonathan Gray khalek at users.sourceforge.net
Mon Mar 17 05:06:32 CET 2003


Update of /cvsroot/scummvm/scummvm/scumm/smush
In directory sc8-pr-cvs1:/tmp/cvs-serv22269

Modified Files:
	smush_mixer.cpp 
Log Message:
init member vars in right order

Index: smush_mixer.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/smush/smush_mixer.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- smush_mixer.cpp	17 Mar 2003 12:28:50 -0000	1.1
+++ smush_mixer.cpp	17 Mar 2003 13:04:54 -0000	1.2
@@ -30,8 +30,8 @@
 
 SmushMixer::SmushMixer(SoundMixer *m) :
 	_mixer(m),
-	_soundFrequency(22050),
-	_nextIndex(_mixer->_beginSlots)	{
+	_nextIndex(_mixer->_beginSlots),
+	_soundFrequency(22050) {
 	for(int32 i = _mixer->_beginSlots; i < SoundMixer::NUM_CHANNELS; i++) {
 		_channels[i].id = -1;
 		_channels[i].chan = NULL;





More information about the Scummvm-git-logs mailing list