summaryrefslogtreecommitdiff
path: root/apps/settings_list.c
diff options
context:
space:
mode:
authorDana Conrad <dconrad@fastmail.com>2024-04-29 20:33:26 -0500
committerAidan MacDonald <amachronic@protonmail.com>2024-05-12 09:42:02 -0400
commit5f377c2613b54acc752902fa7531b9d25b03863e (patch)
tree052a94254c9057f1b11a64a665f0c33b9e7476a7 /apps/settings_list.c
parentd0758c5330aac0cdee7b94b7b29e196b53b2e362 (diff)
downloadrockbox-5f377c2613b54acc752902fa7531b9d25b03863e.tar.gz
rockbox-5f377c2613b54acc752902fa7531b9d25b03863e.zip
Eros Q Native: Add Stereo SW behavior setting
Hopefully this should cover our bases so we can change the behavior of the stereo switch to keep line out working when they change the hardware on us! Change-Id: Ic36bcb3778d5681a5f3f158c689df9c1420c1d7e
Diffstat (limited to 'apps/settings_list.c')
-rw-r--r--apps/settings_list.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/settings_list.c b/apps/settings_list.c
index dc33c27c95..d60fa510d8 100644
--- a/apps/settings_list.c
+++ b/apps/settings_list.c
@@ -2295,6 +2295,11 @@ const struct settings_list settings[] = {
2295 OFFON_SETTING(0, clear_settings_on_hold, LANG_CLEAR_SETTINGS_ON_HOLD, 2295 OFFON_SETTING(0, clear_settings_on_hold, LANG_CLEAR_SETTINGS_ON_HOLD,
2296 true, "clear settings on hold", NULL), 2296 true, "clear settings on hold", NULL),
2297#endif 2297#endif
2298#if defined(HAVE_EROS_QN_CODEC)
2299 CHOICE_SETTING(0, stereosw_mode, LANG_STEREOSW_MODE, 0, "stereo switch mode",
2300 "normal,reverse,always0,always1", sound_settings_apply, 4,
2301 ID2P(LANG_NORMAL), ID2P(LANG_REVERSE), ID2P(LANG_ALWAYS_ZERO), ID2P(LANG_ALWAYS_ONE)),
2302#endif
2298}; 2303};
2299 2304
2300const int nb_settings = sizeof(settings)/sizeof(*settings); 2305const int nb_settings = sizeof(settings)/sizeof(*settings);