From ee7d312ac9660cc8a5ff387dacb13eeea005692c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Istv=C3=A1n=20Szab=C3=B3?= Date: Tue, 2 Aug 2022 07:48:27 +0200 Subject: [PATCH] Allow negative value for stereo difference in BitCrush (#6475) --- plugins/Bitcrush/BitcrushControls.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Bitcrush/BitcrushControls.cpp b/plugins/Bitcrush/BitcrushControls.cpp index 163c2c924..348f1288e 100644 --- a/plugins/Bitcrush/BitcrushControls.cpp +++ b/plugins/Bitcrush/BitcrushControls.cpp @@ -42,7 +42,7 @@ BitcrushControls::BitcrushControls( BitcrushEffect * eff ) : m_outGain( 0.0f, -20.0f, 20.0f, 0.1f, this, tr( "Output gain" ) ), m_outClip( 0.0f, -20.0f, 20.0f, 0.1f, this, tr( "Output clip" ) ), m_rate( 44100.f, 20.f, 44100.f, 1.0f, this, tr( "Sample rate" ) ), - m_stereoDiff( 0.f, 0.f, 50.f, 0.1f, this, tr( "Stereo difference" ) ), + m_stereoDiff( 0.f, -50.f, 50.f, 0.1f, this, tr( "Stereo difference" ) ), m_levels( 256.f, 1.f, 256.f, 0.01f, this, tr( "Levels" ) ), m_rateEnabled( true, this, tr( "Rate enabled" ) ), m_depthEnabled( true, this, tr( "Depth enabled" ) )