Browse Source

Fixed an issue with the bypass logic of the convolution engine

tags/2021-05-28
hogliux 7 years ago
parent
commit
974214afb0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      modules/juce_dsp/frequency/juce_Convolution.cpp

+ 1
- 1
modules/juce_dsp/frequency/juce_Convolution.cpp View File

@@ -1088,7 +1088,7 @@ void Convolution::processSamples (const AudioBlock<float>& input, AudioBlock<flo
}
else
{
if (! isBypassed)
if (! currentIsBypassed)
pimpl->processSamples (input, output);
if (isBypassed != currentIsBypassed)


Loading…
Cancel
Save