aboutsummaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
Diffstat (limited to 'sound')
-rw-r--r--sound/mixer.cpp2
-rw-r--r--sound/mixer.h3
2 files changed, 1 insertions, 4 deletions
diff --git a/sound/mixer.cpp b/sound/mixer.cpp
index 7a5be35fbb..c891fb6b99 100644
--- a/sound/mixer.cpp
+++ b/sound/mixer.cpp
@@ -231,7 +231,7 @@ void MixerImpl::playRaw(
AudioStream *input = makeRawMemoryStream((byte *)sound, size, autofreeBuffer, rate, flags, loopStart, loopEnd);
// Play it
- playInputStream(type, handle, input, id, volume, balance, DisposeAfterUse::YES, false, ((flags & Mixer::FLAG_REVERSE_STEREO) != 0));
+ playInputStream(type, handle, input, id, volume, balance, DisposeAfterUse::YES, false, false);
}
void MixerImpl::playInputStream(
diff --git a/sound/mixer.h b/sound/mixer.h
index 0055e51d87..1d7b5e198a 100644
--- a/sound/mixer.h
+++ b/sound/mixer.h
@@ -85,9 +85,6 @@ public:
/** sound is in stereo (default: mono) */
FLAG_STEREO = 1 << 3,
- /** reverse the left and right stereo channel */
- FLAG_REVERSE_STEREO = 1 << 4,
-
/** loop the audio */
FLAG_LOOP = 1 << 6
};