From dc7217fbbb4fd5541f62a049b838b137f1fc66ed Mon Sep 17 00:00:00 2001 From: hogliux Date: Mon, 14 May 2018 18:02:06 +0100 Subject: [PATCH] DSP: Fixed a bug in AudioBlock::multiply where the linear smoothed value would not be applied --- modules/juce_dsp/containers/juce_AudioBlock.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_dsp/containers/juce_AudioBlock.h b/modules/juce_dsp/containers/juce_AudioBlock.h index 36d710daa8..815a286118 100644 --- a/modules/juce_dsp/containers/juce_AudioBlock.h +++ b/modules/juce_dsp/containers/juce_AudioBlock.h @@ -513,7 +513,7 @@ public: if (! value.isSmoothing()) { - copy (src); + multiply (src, value.getTargetValue()); } else {