summaryrefslogtreecommitdiff
path: root/apps/sound_menu.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/sound_menu.c')
-rw-r--r--apps/sound_menu.c13
1 files changed, 10 insertions, 3 deletions
diff --git a/apps/sound_menu.c b/apps/sound_menu.c
index a7e01b8c8e..9ac95e46b8 100644
--- a/apps/sound_menu.c
+++ b/apps/sound_menu.c
@@ -228,10 +228,17 @@ static void set_chanconf(int val)
228 228
229static bool chanconf(void) 229static bool chanconf(void)
230{ 230{
231 char *names[] = {str(LANG_CHANNEL_STEREO), str(LANG_CHANNEL_MONO), 231 char *names[] = {str(LANG_CHANNEL_STEREO),
232 str(LANG_CHANNEL_LEFT), str(LANG_CHANNEL_RIGHT) }; 232#ifdef HAVE_LCD_CHARCELLS
233 str(LANG_CHANNEL_STEREO_NARROW_PLAYER),
234#else
235 str(LANG_CHANNEL_STEREO_NARROW_RECORDER),
236#endif
237 str(LANG_CHANNEL_MONO),
238 str(LANG_CHANNEL_LEFT), str(LANG_CHANNEL_RIGHT),
239 str(LANG_CHANNEL_KARAOKE), str(LANG_CHANNEL_STEREO_WIDE) };
233 return set_option(str(LANG_CHANNEL), &global_settings.channel_config, 240 return set_option(str(LANG_CHANNEL), &global_settings.channel_config,
234 names, 4, set_chanconf ); 241 names, 7, set_chanconf );
235} 242}
236 243
237bool sound_menu(void) 244bool sound_menu(void)