diff options
author | Paweł Kołodziejski | 2003-06-22 06:27:32 +0000 |
---|---|---|
committer | Paweł Kołodziejski | 2003-06-22 06:27:32 +0000 |
commit | 21aa812bf100fb705edd8913612f70efd55280b6 (patch) | |
tree | 05f22af97652fa7209a4945204921a1268600ef1 | |
parent | 0a6b7ad6ace9677dcba2cab80f585304f25ee6fb (diff) | |
download | scummvm-rg350-21aa812bf100fb705edd8913612f70efd55280b6.tar.gz scummvm-rg350-21aa812bf100fb705edd8913612f70efd55280b6.tar.bz2 scummvm-rg350-21aa812bf100fb705edd8913612f70efd55280b6.zip |
fixed warning
svn-id: r8599
-rw-r--r-- | scumm/smush/smush_mixer.cpp | 2 |
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); |