diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2004-06-22 12:37:42 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2004-06-22 12:37:42 +0000 |
| commit | 94da3b5f1d6bd8ea7bba41dee573895f23c04544 (patch) | |
| tree | 14d2c743c6c3c4ec007a185c34781cef7a505630 /apps/settings.c | |
| parent | 9830b164ef09277df433be37c2adafe3b078c3d4 (diff) | |
| download | rockbox-94da3b5f1d6bd8ea7bba41dee573895f23c04544.zip rockbox-94da3b5f1d6bd8ea7bba41dee573895f23c04544.tar.gz rockbox-94da3b5f1d6bd8ea7bba41dee573895f23c04544.tar.bz2 rockbox-94da3b5f1d6bd8ea7bba41dee573895f23c04544.tar.xz | |
Added the (practically useless) 20ms option to the Auto Volume setting, for completeness
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4793 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings.c')
| -rw-r--r-- | apps/settings.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/settings.c b/apps/settings.c index 36fcff3..7d1d92f 100644 --- a/apps/settings.c +++ b/apps/settings.c @@ -71,7 +71,7 @@ char rockboxdir[] = ROCKBOX_DIR; /* config/font/data file directory */ char rec_base_directory[] = REC_BASE_DIR; -#define CONFIG_BLOCK_VERSION 12 +#define CONFIG_BLOCK_VERSION 13 #define CONFIG_BLOCK_SIZE 512 #define RTC_BLOCK_SIZE 44 @@ -166,7 +166,7 @@ static struct bit_entry rtc_bits[] = #ifdef HAVE_MAS3587F {5, S_O(loudness), 0, "loudness", NULL }, /* 0...17 */ {7, S_O(bass_boost), 0, "bass boost", NULL }, /* 0...100 */ - {2, S_O(avc), 0, "auto volume", "off,2,4,8" }, + {3, S_O(avc), 0, "auto volume", "off,20ms,2,4,8" }, #endif {3, S_O(channel_config), 6, "channels", "stereo,stereo narrow,mono,mono left,mono right,karaoke,stereo wide" }, |