diff --git a/Ryujinx.Audio.Renderer/Dsp/Command/DownMixSurroundToStereoCommand.cs b/Ryujinx.Audio.Renderer/Dsp/Command/DownMixSurroundToStereoCommand.cs index 76f5c5767..7b790cdff 100644 --- a/Ryujinx.Audio.Renderer/Dsp/Command/DownMixSurroundToStereoCommand.cs +++ b/Ryujinx.Audio.Renderer/Dsp/Command/DownMixSurroundToStereoCommand.cs @@ -62,8 +62,8 @@ namespace Ryujinx.Audio.Renderer.Dsp.Command { ReadOnlySpan frontLeft = context.GetBuffer(InputBufferIndices[0]); ReadOnlySpan frontRight = context.GetBuffer(InputBufferIndices[1]); - ReadOnlySpan lowFrequency = context.GetBuffer(InputBufferIndices[2]); - ReadOnlySpan frontCenter = context.GetBuffer(InputBufferIndices[3]); + ReadOnlySpan frontCenter = context.GetBuffer(InputBufferIndices[2]); + ReadOnlySpan lowFrequency = context.GetBuffer(InputBufferIndices[3]); ReadOnlySpan backLeft = context.GetBuffer(InputBufferIndices[4]); ReadOnlySpan backRight = context.GetBuffer(InputBufferIndices[5]);