From 102ef6cb3356ef81e2a392d3aa8bd6324eb3ff30 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Tue, 20 Aug 2019 04:16:44 -0700 Subject: Pass a span for the Mix function's input --- alc/effects/autowah.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'alc/effects/autowah.cpp') diff --git a/alc/effects/autowah.cpp b/alc/effects/autowah.cpp index f16c5ba5..10d69b6c 100644 --- a/alc/effects/autowah.cpp +++ b/alc/effects/autowah.cpp @@ -190,8 +190,8 @@ void ALautowahState::process(const ALsizei samplesToDo, const FloatBufferLine *R mChans[c].Filter.z2 = z2; /* Now, mix the processed sound data to the output. */ - MixSamples(mBufferOut, samplesOut, mChans[c].CurrentGains, mChans[c].TargetGains, - samplesToDo, 0, samplesToDo); + MixSamples({mBufferOut, mBufferOut+samplesToDo}, samplesOut, mChans[c].CurrentGains, + mChans[c].TargetGains, samplesToDo, 0); } } -- cgit v1.2.3