From 3f828e9244140e7860e961917fc96e42b2a866ca Mon Sep 17 00:00:00 2001 From: Solomon Peachy Date: Mon, 27 Jul 2020 18:41:02 -0400 Subject: FS#13220: Allow sound settings to be saved again (Basically this reverts bf546fbfcb and its successors) Change-Id: I044cfb797d306412837e7509cb85b65bc6ffacca --- apps/settings.c | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'apps/settings.c') diff --git a/apps/settings.c b/apps/settings.c index 6cecffcb91..b72808b510 100644 --- a/apps/settings.c +++ b/apps/settings.c @@ -300,14 +300,7 @@ bool settings_load_config(const char* file, bool apply) #endif if (settings[i].cfg_vals == NULL) { - int temp = atoi(value); - if (settings[i].flags&F_ALLOW_ARBITRARY_VALS || - (temp >= settings[i].int_setting->min && - temp <= settings[i].int_setting->max && - temp % settings[i].int_setting->step == 0)) - { - *(int*)settings[i].setting = temp; - } + *(int*)settings[i].setting = atoi(value); } else { -- cgit v1.2.3