From 007fcbb3a3cbfca21766595ba2048dec7dad21c8 Mon Sep 17 00:00:00 2001 From: Paul Ferrand Date: Sat, 4 Jul 2020 18:55:39 +0200 Subject: [PATCH] Deactivate 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 9268cb89..65cc2286 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 { 5 }; + constexpr uint8_t gainSmoothing { 0 }; constexpr unsigned powerTableSizeExponent { 11 }; constexpr int maxFilePromises { maxVoices }; constexpr int sustainCC { 64 };