From 55ebd17dfcb7b49ef1804ce5dc78262b917f10a2 Mon Sep 17 00:00:00 2001 From: Tom Poole Date: Fri, 9 Nov 2018 10:24:15 +0000 Subject: [PATCH] Fixed a bug in the Oversampling class --- modules/juce_dsp/processors/juce_Oversampling.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/modules/juce_dsp/processors/juce_Oversampling.cpp b/modules/juce_dsp/processors/juce_Oversampling.cpp index ece2edd189..4a97ef8863 100644 --- a/modules/juce_dsp/processors/juce_Oversampling.cpp +++ b/modules/juce_dsp/processors/juce_Oversampling.cpp @@ -544,8 +544,6 @@ Oversampling::Oversampling (size_t newNumChannels, size_t newFactor, { jassert (isPositiveAndBelow (newFactor, 5) && numChannels > 0); - factorOversampling = static_cast (1) << newFactor; - if (newFactor == 0) { addDummyOversamplingStage();