From e2a33788bb760f9cbfa0e1895b24b85224fa7992 Mon Sep 17 00:00:00 2001 From: erikkaashoek Date: Sun, 20 Nov 2022 16:22:14 +0100 Subject: [PATCH] Re-enable high step attenuate --- sa_core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sa_core.c b/sa_core.c index 3a05628..c6e8b07 100644 --- a/sa_core.c +++ b/sa_core.c @@ -1345,11 +1345,11 @@ void set_attenuation(float a) // Is used both only in high/low input mode setting.atten_step = 1; a = a - RECEIVE_SWITCH_ATTENUATION; } else +#endif if (setting.mode == M_HIGH && a > 0) { setting.atten_step = 1; a = a - SWITCH_ATTENUATION; } else -#endif { setting.atten_step = 0; setting.auto_attenuation = false;