aboutsummaryrefslogtreecommitdiff
path: root/scumm/smush/smush_mixer.cpp
diff options
context:
space:
mode:
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);