1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

DSP: Fixed an issue with feedback in Chorus

This commit is contained in:
Ivan Cohen 2020-07-07 17:51:08 +02:00 committed by Tom Poole
parent a30f735786
commit f5400b5764

View file

@ -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);