[Scummvm-cvs-logs] CVS: scummvm/sound mixer.cpp,1.54,1.55
Pawel Kolodziejski
aquadran at users.sourceforge.net
Thu Jun 26 22:03:02 CEST 2003
Update of /cvsroot/scummvm/scummvm/sound
In directory sc8-pr-cvs1:/tmp/cvs-serv17367
Modified Files:
mixer.cpp
Log Message:
fixed warning
Index: mixer.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sound/mixer.cpp,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -d -r1.54 -r1.55
--- mixer.cpp 24 Jun 2003 23:36:05 -0000 1.54
+++ mixer.cpp 27 Jun 2003 05:02:01 -0000 1.55
@@ -848,7 +848,7 @@
_position = 0;
_size = size;
_ptr = (byte *)sound;
- _releasePtr = (flags & SoundMixer::FLAG_AUTOFREE);
+ _releasePtr = (flags & SoundMixer::FLAG_AUTOFREE) != 0;
/* This variable is the number of samples to cut at the start of the MP3
file. This is needed to have lip-sync as the MP3 file have some miliseconds
More information about the Scummvm-git-logs
mailing list