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:
parent
a30f735786
commit
f5400b5764
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue