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

Pawel Kolodziejski aquadran at users.sourceforge.net
Sat Jun 21 23:28:02 CEST 2003


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

Modified Files:
	smush_mixer.cpp 
Log Message:
fixed warning

Index: smush_mixer.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/smush/smush_mixer.cpp,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- smush_mixer.cpp	22 Jun 2003 01:33:03 -0000	1.11
+++ smush_mixer.cpp	22 Jun 2003 06:27:32 -0000	1.12
@@ -116,7 +116,7 @@
 
 				_channels[i].chan->getParameters(rate, stereo, is_short);
 				int32 size = _channels[i].chan->availableSoundData();
-				int32 flags = stereo ? SoundMixer::FLAG_STEREO : 0;
+				byte flags = stereo ? SoundMixer::FLAG_STEREO : 0;
 
 				if (is_short) {
 					data = malloc(size * (stereo ? 2 : 1) * 4);





More information about the Scummvm-git-logs mailing list