From c2a1cd157dcda59c2bca8b206b298fcf43debd5a Mon Sep 17 00:00:00 2001 From: Chris Date: Fri, 24 Oct 2025 12:28:12 +0200 Subject: [PATCH] fix eq default value --- filter/spliteq.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/filter/spliteq.h b/filter/spliteq.h index 4a8475e..5ef0ac0 100644 --- a/filter/spliteq.h +++ b/filter/spliteq.h @@ -263,8 +263,8 @@ struct spliteq { float mid_gain_adj = 1.0f; float treble_gain_adj = 1.0f; - spliteq_mode current_mode = LINKWITZ_RILEY; - spliteq_mode target_mode = LINKWITZ_RILEY; + spliteq_mode current_mode = CASCADE_SUM; + spliteq_mode target_mode = CASCADE_SUM; bool transitioning = false; smoother transition_smoother; };