diff options
author | Chris Robinson <[email protected]> | 2023-01-05 16:47:37 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2023-01-05 16:47:37 -0800 |
commit | d61376e54c6b0dabd5f0fea2604cdfb03c34dac9 (patch) | |
tree | 175a8453c2137e8164877927e4cdb9a9602ce94a /alc/effects/autowah.cpp | |
parent | 6d613b308839eb216b32db265aed959a93fdd4bb (diff) |
Rename some lambda parameters to avoid shadowing warnings
Diffstat (limited to 'alc/effects/autowah.cpp')
-rw-r--r-- | alc/effects/autowah.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/alc/effects/autowah.cpp b/alc/effects/autowah.cpp index 581476a2..50ec0268 100644 --- a/alc/effects/autowah.cpp +++ b/alc/effects/autowah.cpp @@ -134,10 +134,10 @@ void AutowahState::update(const ContextBase *context, const EffectSlot *slot, mBandwidthNorm = (MaxFreq-MinFreq) / frequency; mOutTarget = target.Main->Buffer; - auto set_channel = [this](size_t idx, uint target, float gain) + auto set_channel = [this](size_t idx, uint outchan, float outgain) { - mChans[idx].mTargetChannel = target; - mChans[idx].mTargetGain = gain; + mChans[idx].mTargetChannel = outchan; + mChans[idx].mTargetGain = outgain; }; target.Main->setAmbiMixParams(slot->Wet, slot->Gain, set_channel); } |