aboutsummaryrefslogtreecommitdiff
path: root/scumm/smush/smush_mixer.cpp
diff options
context:
space:
mode:
authorPaweł Kołodziejski2003-06-22 06:27:32 +0000
committerPaweł Kołodziejski2003-06-22 06:27:32 +0000
commit21aa812bf100fb705edd8913612f70efd55280b6 (patch)
tree05f22af97652fa7209a4945204921a1268600ef1 /scumm/smush/smush_mixer.cpp
parent0a6b7ad6ace9677dcba2cab80f585304f25ee6fb (diff)
downloadscummvm-rg350-21aa812bf100fb705edd8913612f70efd55280b6.tar.gz
scummvm-rg350-21aa812bf100fb705edd8913612f70efd55280b6.tar.bz2
scummvm-rg350-21aa812bf100fb705edd8913612f70efd55280b6.zip
fixed warning
svn-id: r8599
Diffstat (limited to 'scumm/smush/smush_mixer.cpp')
-rw-r--r--scumm/smush/smush_mixer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/smush/smush_mixer.cpp b/scumm/smush/smush_mixer.cpp
index 7f2dba979a..9f74b5252d 100644
--- a/scumm/smush/smush_mixer.cpp
+++ b/scumm/smush/smush_mixer.cpp
@@ -116,7 +116,7 @@ bool SmushMixer::handleFrame() {
_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);