1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-08 04:20:09 +00:00

Fixed an issue with the bypass logic of the convolution engine

This commit is contained in:
hogliux 2017-07-27 15:58:57 +01:00
parent 4727eeabdc
commit 974214afb0

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)