diff options
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); } |