[Scummvm-cvs-logs] CVS: scummvm/sound mixer.cpp,1.115,1.116

Torbj?rn Andersson eriktorbjorn at users.sourceforge.net
Tue Sep 2 09:52:17 CEST 2003


Update of /cvsroot/scummvm/scummvm/sound
In directory sc8-pr-cvs1:/tmp/cvs-serv23804

Modified Files:
	mixer.cpp 
Log Message:
Fixed compiler warning that I introduced earlier.


Index: mixer.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sound/mixer.cpp,v
retrieving revision 1.115
retrieving revision 1.116
diff -u -d -r1.115 -r1.116
--- mixer.cpp	2 Sep 2003 13:48:20 -0000	1.115
+++ mixer.cpp	2 Sep 2003 16:51:51 -0000	1.116
@@ -52,7 +52,7 @@
 	int _id;
 
 	Channel(SoundMixer *mixer, PlayingSoundHandle *handle)
-		: _mixer(mixer), _handle(handle), _converter(0), _input(0), _id(-1), _paused(false) {
+		: _mixer(mixer), _handle(handle), _converter(0), _input(0), _paused(false), _id(-1) {
 		assert(mixer);
 	}
 	virtual ~Channel();





More information about the Scummvm-git-logs mailing list