From 3fc51ab8c6bfa6b55259a8f3e2b7c9b9903f5f43 Mon Sep 17 00:00:00 2001 From: xenakios Date: Thu, 14 Dec 2017 00:22:21 +0200 Subject: [PATCH] Mono output doesn't currently work... --- Source/PluginProcessor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/PluginProcessor.cpp b/Source/PluginProcessor.cpp index fc26043..2c2566e 100644 --- a/Source/PluginProcessor.cpp +++ b/Source/PluginProcessor.cpp @@ -115,7 +115,7 @@ PaulstretchpluginAudioProcessor::PaulstretchpluginAudioProcessor() addParameter(new AudioParameterFloat("filter_high_0", "Filter high", 20.0f, 20000.0f, 20000.0f)); // 24 addParameter(new AudioParameterFloat("onsetdetect_0", "Onset detection", 0.0f, 1.0f, 0.0f)); // 25 addParameter(new AudioParameterBool("capture_enabled0", "Capture", false)); // 26 - m_outchansparam = new AudioParameterInt("numoutchans0", "Num output channels", 1, 8, 2); + m_outchansparam = new AudioParameterInt("numoutchans0", "Num output channels", 2, 8, 2); addParameter(m_outchansparam); // 27 startTimer(1, 50); }