From 0e8e83aac45f46401d24912194e72ca42dbde10a Mon Sep 17 00:00:00 2001 From: weefuzzy Date: Wed, 11 May 2022 10:41:36 +0100 Subject: [PATCH] SpectralShape SC class: maxFFT --- release-packaging/Classes/FluidSpectralShape.sc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release-packaging/Classes/FluidSpectralShape.sc b/release-packaging/Classes/FluidSpectralShape.sc index 9508f7e..33ba248 100644 --- a/release-packaging/Classes/FluidSpectralShape.sc +++ b/release-packaging/Classes/FluidSpectralShape.sc @@ -24,7 +24,7 @@ FluidSpectralShape : FluidRTMultiOutUGen { *kr { arg in = 0, select, minFreq = 0, maxFreq = -1, rolloffPercent = 95, unit = 0, power = 0, windowSize = 1024, hopSize = -1, fftSize = -1, maxFFTSize; var selectbits = select !? {this.prProcessSelect(select)} ?? {this.prProcessSelect(this.features)}; - + maxFFTSize = maxFFTSize ? -1; ^this.multiNew('control', in.asAudioRateInput(this), selectbits, minFreq, maxFreq, rolloffPercent, unit, power, windowSize, hopSize, fftSize, maxFFTSize); }