diff --git a/modules/juce_dsp/widgets/juce_Chorus.h b/modules/juce_dsp/widgets/juce_Chorus.h index c91a6a848c..273b1ee0d9 100644 --- a/modules/juce_dsp/widgets/juce_Chorus.h +++ b/modules/juce_dsp/widgets/juce_Chorus.h @@ -130,7 +130,7 @@ public: auto input = inputSamples[i]; auto output = input - lastOutput[channel]; - delay.pushSample ((int) channel, input); + delay.pushSample ((int) channel, output); delay.setDelay (delaySamples[i]); output = delay.popSample ((int) channel);