summaryrefslogtreecommitdiff
path: root/apps/settings.c
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2004-10-04 13:12:31 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2004-10-04 13:12:31 +0000
commit0bc2c6cc2cb2e2ff75626f35bfa33e0a8af15355 (patch)
tree02527473f68ab43aecb2715870d90b31f943a17c /apps/settings.c
parent9bf0cd1fc0bce955cf470892704a75f8d7ce9e10 (diff)
The prerecord setting had too few bits allocated
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5160 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings.c')
-rw-r--r--apps/settings.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings.c b/apps/settings.c
index b3b9ef1db8..45ea7de072 100644
--- a/apps/settings.c
+++ b/apps/settings.c
@@ -311,7 +311,7 @@ static const struct bit_entry hd_bits[] =
"rec left gain", NULL }, /* 0...15 */
{4, S_O(rec_right_gain), 2, /* 0dB */
"rec right gain", NULL }, /* 0...15 */
- {1, S_O(rec_prerecord_time), 0, "prerecording time", NULL }, /* 0...30 */
+ {5, S_O(rec_prerecord_time), 0, "prerecording time", NULL }, /* 0...30 */
{1, S_O(rec_directory), 0, /* rec_base_directory */
"rec directory", REC_BASE_DIR ",current" },
#endif