From 1faa7f0739d0f0c4c020cd0d6c96efe2fb655fba Mon Sep 17 00:00:00 2001 From: Jean Pierre Cimalando Date: Wed, 18 Mar 2020 20:56:07 +0100 Subject: [PATCH] Fix the broken stereo when width is default --- src/sfizz/Defaults.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sfizz/Defaults.h b/src/sfizz/Defaults.h index 9e2684b7..a90d20bb 100644 --- a/src/sfizz/Defaults.h +++ b/src/sfizz/Defaults.h @@ -101,7 +101,7 @@ namespace Default constexpr float position { 0.0 }; constexpr Range positionRange { -100.0, 100.0 }; constexpr Range positionCCRange { -200.0, 200.0 }; - constexpr float width { 0.0 }; + constexpr float width { 100.0 }; constexpr Range widthRange { -100.0, 100.0 }; constexpr Range widthCCRange { -200.0, 200.0 }; constexpr uint8_t ampKeycenter { 60 };