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/vmorpher.cpp | |
parent | 6d613b308839eb216b32db265aed959a93fdd4bb (diff) |
Rename some lambda parameters to avoid shadowing warnings
Diffstat (limited to 'alc/effects/vmorpher.cpp')
-rw-r--r-- | alc/effects/vmorpher.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/alc/effects/vmorpher.cpp b/alc/effects/vmorpher.cpp index 81869dca..0eb136f9 100644 --- a/alc/effects/vmorpher.cpp +++ b/alc/effects/vmorpher.cpp @@ -273,10 +273,10 @@ void VmorpherState::update(const ContextBase *context, const EffectSlot *slot, } 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); } |