aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Alc/effects/reverb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/effects/reverb.c b/Alc/effects/reverb.c
index 071f4fc3..c9397b67 100644
--- a/Alc/effects/reverb.c
+++ b/Alc/effects/reverb.c
@@ -1504,7 +1504,7 @@ static ALvoid ALreverbState_processEax(ALreverbState *State, ALuint SamplesToDo,
State->Early.CurrentGain[c], delta, base, SamplesToDo-base, todo
);
if(State->ExtraChannels > 0)
- DoMix(early[c], SamplesOut, State->ExtraChannels,
+ DoMix(early[c], State->ExtraOut, State->ExtraChannels,
State->Early.PanGain[c]+NumChannels,
State->Early.CurrentGain[c]+NumChannels, delta, base,
SamplesToDo-base, todo
@@ -1516,7 +1516,7 @@ static ALvoid ALreverbState_processEax(ALreverbState *State, ALuint SamplesToDo,
State->Late.CurrentGain[c], delta, base, SamplesToDo, todo
);
if(State->ExtraChannels > 0)
- DoMix(late[c], SamplesOut, State->ExtraChannels,
+ DoMix(late[c], State->ExtraOut, State->ExtraChannels,
State->Late.PanGain[c]+NumChannels,
State->Late.CurrentGain[c]+NumChannels, delta, base,
SamplesToDo-base, todo