From 5ceca05eb7d0de314f86df2648e519c88ffccc2e Mon Sep 17 00:00:00 2001 From: Emmef Date: Sun, 7 Jan 2024 01:12:15 +0100 Subject: [PATCH] Changed the default for the weight of slow detection to what it effectively used to be. --- src/background_music/basic_config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/background_music/basic_config.h b/src/background_music/basic_config.h index 66adf24a0..f1c72c72e 100644 --- a/src/background_music/basic_config.h +++ b/src/background_music/basic_config.h @@ -34,7 +34,7 @@ static constexpr double CONF_MAX_AMPLIFICATION_MIN = 0.0; static constexpr double CONF_MAX_AMPLIFICATION_MAX = 40.0; static constexpr const char * CONF_SLOW_WEIGHT_VARIABLE = "perception_slow_weight"; -static constexpr const char * CONF_SLOW_WEIGHT_DEFAULT_STRING = "1.0"; +static constexpr const char * CONF_SLOW_WEIGHT_DEFAULT_STRING = "0.5"; static constexpr double CONF_SLOW_WEIGHT_MIN = 0.0; static constexpr double CONF_SLOW_WEIGHT_MAX = 2.0;