1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +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 cb0fe20129
commit 87de30bcc5

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)