diff options
author | Eugene Sandulenko | 2007-03-10 15:04:06 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2007-03-10 15:04:06 +0000 |
commit | 06c2976fa08897b6d81eb702b349a343597d02d4 (patch) | |
tree | b0bbb3caa2b01c217cdb921d4060727fa457acdd /sound | |
parent | 9b0bf64448fe5c053f73befe97a12c3193f5fd1b (diff) | |
download | scummvm-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.cpp | 2 |
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( |