[Scummvm-cvs-logs] CVS: scummvm/queen sound.cpp,1.8,1.9

Torbj?rn Andersson eriktorbjorn at users.sourceforge.net
Fri Nov 7 02:39:15 CET 2003


Update of /cvsroot/scummvm/scummvm/queen
In directory sc8-pr-cvs1:/tmp/cvs-serv395

Modified Files:
	sound.cpp 
Log Message:
Fixed warning. (I've only seen these warnings when compiling under MinGW,
and to be honest I never understood why the compiler wars for it.)


Index: sound.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/queen/sound.cpp,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- sound.cpp	7 Nov 2003 02:33:20 -0000	1.8
+++ sound.cpp	7 Nov 2003 10:38:45 -0000	1.9
@@ -95,7 +95,7 @@
 #endif
 
 Sound::Sound(SoundMixer *mixer, Input *input, Resource  *resource) : 
-  _mixer(mixer), _input(input), _resource(resource), _sfxHandle(0), _lastOverride(0), _currentSong(0) {
+  _mixer(mixer), _input(input), _resource(resource), _lastOverride(0), _currentSong(0), _sfxHandle(0) {
 }
 
 Sound::~Sound() {





More information about the Scummvm-git-logs mailing list