aboutsummaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorEugene Sandulenko2007-03-10 15:04:06 +0000
committerEugene Sandulenko2007-03-10 15:04:06 +0000
commit06c2976fa08897b6d81eb702b349a343597d02d4 (patch)
treeb0bbb3caa2b01c217cdb921d4060727fa457acdd /sound
parent9b0bf64448fe5c053f73befe97a12c3193f5fd1b (diff)
downloadscummvm-rg350-06c2976fa08897b6d81eb702b349a343597d02d4.tar.gz
scummvm-rg350-06c2976fa08897b6d81eb702b349a343597d02d4.tar.bz2
scummvm-rg350-06c2976fa08897b6d81eb702b349a343597d02d4.zip
More fixes for MSVC8 warnings.
svn-id: r26063
Diffstat (limited to 'sound')
-rw-r--r--sound/mixer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/mixer.cpp b/sound/mixer.cpp
index 0b9ffe3abe..f2ffc65ae6 100644
--- a/sound/mixer.cpp
+++ b/sound/mixer.cpp
@@ -160,7 +160,7 @@ void Mixer::playRaw(
AudioStream *input = makeLinearInputStream((byte *)sound, size, rate, flags, loopStart, loopEnd);
// Play it
- playInputStream(type, handle, input, id, volume, balance, true, false, (flags & Mixer::FLAG_REVERSE_STEREO));
+ playInputStream(type, handle, input, id, volume, balance, true, false, ((flags & Mixer::FLAG_REVERSE_STEREO) != 0));
}
void Mixer::playInputStream(