From c88bf8bd5a40986a263c7199b6b5783a413d816c Mon Sep 17 00:00:00 2001 From: Paul Batchelor Date: Mon, 13 Mar 2017 10:00:42 -0700 Subject: [PATCH] corrected wet/dry knob range --- src/core/Effect.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/Effect.cpp b/src/core/Effect.cpp index f465c1599c6..1ee04a70fe3 100644 --- a/src/core/Effect.cpp +++ b/src/core/Effect.cpp @@ -46,7 +46,7 @@ Effect::Effect( const Plugin::Descriptor * _desc, m_running( false ), m_bufferCount( 0 ), m_enabledModel( true, this, tr( "Effect enabled" ) ), - m_wetDryModel( 1.0f, -1.0f, 1.0f, 0.01f, this, tr( "Wet/Dry mix" ) ), + m_wetDryModel( 1.0f, 0.0f, 1.0f, 0.01f, this, tr( "Wet/Dry mix" ) ), m_gateModel( 0.0f, 0.0f, 1.0f, 0.01f, this, tr( "Gate" ) ), m_autoQuitModel( 1.0f, 1.0f, 8000.0f, 100.0f, 1.0f, this, tr( "Decay" ) ), m_autoQuitDisabled( false )