From cbb23410372f1173d3c6afff7bfa5a7e44d9288a Mon Sep 17 00:00:00 2001 From: Paul Fd Date: Sat, 18 Apr 2020 21:01:56 +0200 Subject: [PATCH] Reduce the gain smoothing --- src/sfizz/Config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sfizz/Config.h b/src/sfizz/Config.h index 17e5d07c..918264ca 100644 --- a/src/sfizz/Config.h +++ b/src/sfizz/Config.h @@ -41,7 +41,7 @@ namespace config { constexpr int numVoices { 64 }; constexpr unsigned maxVoices { 256 }; constexpr unsigned smoothingSteps { 512 }; - constexpr uint8_t gainSmoothing { 10 }; + constexpr uint8_t gainSmoothing { 5 }; constexpr unsigned powerTableSizeExponent { 11 }; constexpr int maxFilePromises { maxVoices }; constexpr int sustainCC { 64 };