summaryrefslogtreecommitdiff
path: root/apps/sound_menu.c
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2003-02-27 15:02:20 +0000
committerBjörn Stenberg <bjorn@haxx.se>2003-02-27 15:02:20 +0000
commit6da56d9f089743570dacaa52e3ce12338d339ca0 (patch)
treebb44408a014fe25b36bbbf54e9b950427a013a97 /apps/sound_menu.c
parentb1079200d34b197a9ea0ec649168b0a307ee9517 (diff)
downloadrockbox-6da56d9f089743570dacaa52e3ce12338d339ca0.tar.gz
rockbox-6da56d9f089743570dacaa52e3ce12338d339ca0.zip
Added three new channel modes: Stereo narrow, Stereo wide, and Karaoke (voice filter). Patch by Remo Hofer.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3356 a1c6a512-1295-4272-9138-f99709370657
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)