From 6da56d9f089743570dacaa52e3ce12338d339ca0 Mon Sep 17 00:00:00 2001 From: Björn Stenberg Date: Thu, 27 Feb 2003 15:02:20 +0000 Subject: 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 --- apps/sound_menu.c | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to 'apps/sound_menu.c') 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) static bool chanconf(void) { - char *names[] = {str(LANG_CHANNEL_STEREO), str(LANG_CHANNEL_MONO), - str(LANG_CHANNEL_LEFT), str(LANG_CHANNEL_RIGHT) }; + char *names[] = {str(LANG_CHANNEL_STEREO), +#ifdef HAVE_LCD_CHARCELLS + str(LANG_CHANNEL_STEREO_NARROW_PLAYER), +#else + str(LANG_CHANNEL_STEREO_NARROW_RECORDER), +#endif + str(LANG_CHANNEL_MONO), + str(LANG_CHANNEL_LEFT), str(LANG_CHANNEL_RIGHT), + str(LANG_CHANNEL_KARAOKE), str(LANG_CHANNEL_STEREO_WIDE) }; return set_option(str(LANG_CHANNEL), &global_settings.channel_config, - names, 4, set_chanconf ); + names, 7, set_chanconf ); } bool sound_menu(void) -- cgit v1.2.3