diff options
author | Chris Robinson <[email protected]> | 2019-03-22 19:25:55 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-03-22 19:25:55 -0700 |
commit | 3a6e741e900bbfbee99906c780402455637c223a (patch) | |
tree | 814197465cfdc027ac8c7c485f0f33ef2ffea08f /Alc/effects/autowah.cpp | |
parent | 92adfaebcecd305bc6fce43a40b41971bfe564b3 (diff) |
Use MixParams for the wet buffers
Diffstat (limited to 'Alc/effects/autowah.cpp')
-rw-r--r-- | Alc/effects/autowah.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/effects/autowah.cpp b/Alc/effects/autowah.cpp index 81c0c75c..0b12f68e 100644 --- a/Alc/effects/autowah.cpp +++ b/Alc/effects/autowah.cpp @@ -121,7 +121,7 @@ void ALautowahState::update(const ALCcontext *context, const ALeffectslot *slot, mOutBuffer = target.Main->Buffer; mOutChannels = target.Main->NumChannels; - for(size_t i{0u};i < slot->WetBuffer.size();++i) + for(ALsizei i{0};i < slot->Wet.NumChannels;++i) { auto coeffs = GetAmbiIdentityRow(i); ComputePanGains(target.Main, coeffs.data(), slot->Params.Gain, mChans[i].TargetGains); |