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/compressor.cpp | |
parent | 6d613b308839eb216b32db265aed959a93fdd4bb (diff) |
Rename some lambda parameters to avoid shadowing warnings
Diffstat (limited to 'alc/effects/compressor.cpp')
-rw-r--r-- | alc/effects/compressor.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/alc/effects/compressor.cpp b/alc/effects/compressor.cpp index a4333539..c57bd58c 100644 --- a/alc/effects/compressor.cpp +++ b/alc/effects/compressor.cpp @@ -106,10 +106,10 @@ void CompressorState::update(const ContextBase*, const EffectSlot *slot, mEnabled = props->Compressor.OnOff; 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].mTarget = target; - mChans[idx].mGain = gain; + mChans[idx].mTarget = outchan; + mChans[idx].mGain = outgain; }; target.Main->setAmbiMixParams(slot->Wet, slot->Gain, set_channel); } |