Explorar o código

Fix stream channel count when outputting to stereo

David Marcec %!s(int64=6) %!d(string=hai) anos
pai
achega
f4eb7dceaf
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/audio_core/audio_renderer.cpp

+ 1 - 1
src/audio_core/audio_renderer.cpp

@@ -208,7 +208,7 @@ void AudioRenderer::QueueMixedBuffer(Buffer::Tag tag) {
             } else if (channel_count == 2) {
                 const auto l_sample = ClampToS16(mix_buffers[0][i]);
                 const auto r_sample = ClampToS16(mix_buffers[1][i]);
-                if (stream_channel_count == 0) {
+                if (stream_channel_count == 1) {
                     buffer[i * stream_channel_count + 0] = l_sample;
                 } else if (stream_channel_count == 2) {
                     buffer[i * stream_channel_count + 0] = l_sample;