diff options
author | William Wilgus <wilgus.william@gmail.com> | 2022-12-12 03:02:48 -0500 |
---|---|---|
committer | William Wilgus <me.theuser@yahoo.com> | 2022-12-12 03:15:38 -0500 |
commit | 2b79ad43bdac59c422d860b7e3f16dc28ff935d4 (patch) | |
tree | e79384222ebf46615419d6585a1583513ab44b42 | |
parent | 863538c50a82478f239d634c022bb0b2d0149813 (diff) | |
download | rockbox-2b79ad43bd.tar.gz rockbox-2b79ad43bd.zip |
Haas Surround add flag so the settings can be read back from the config file
not sure how long this has been broken
Change-Id: Ifdbfff1e43f3cd6b5ef1c66d45b6b6f38f60cb95
-rw-r--r-- | apps/settings_list.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/settings_list.c b/apps/settings_list.c index eaa3b17e0c..a79429c469 100644 --- a/apps/settings_list.c +++ b/apps/settings_list.c @@ -1640,8 +1640,8 @@ const struct settings_list settings[] = { OFFON_SETTING(F_SOUNDSETTING, dithering_enabled, LANG_DITHERING, false, "dithering enabled", dsp_dither_enable), /* surround */ - TABLE_SETTING(F_TIME_SETTING | F_SOUNDSETTING, surround_enabled, - LANG_SURROUND, 0, "surround enabled", off, + TABLE_SETTING(F_TIME_SETTING | F_SOUNDSETTING | F_ALLOW_ARBITRARY_VALS, + surround_enabled, LANG_SURROUND, 0, "surround enabled", off, UNIT_MS, formatter_time_unit_0_is_off, getlang_time_unit_0_is_off, dsp_surround_enable, 6, |