summaryrefslogtreecommitdiff
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
parent9bf0cd1fc0bce955cf470892704a75f8d7ce9e10 (diff)
downloadrockbox-0bc2c6cc2cb2e2ff75626f35bfa33e0a8af15355.tar.gz
rockbox-0bc2c6cc2cb2e2ff75626f35bfa33e0a8af15355.zip
The prerecord setting had too few bits allocated
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5160 a1c6a512-1295-4272-9138-f99709370657
-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[] =
311 "rec left gain", NULL }, /* 0...15 */ 311 "rec left gain", NULL }, /* 0...15 */
312 {4, S_O(rec_right_gain), 2, /* 0dB */ 312 {4, S_O(rec_right_gain), 2, /* 0dB */
313 "rec right gain", NULL }, /* 0...15 */ 313 "rec right gain", NULL }, /* 0...15 */
314 {1, S_O(rec_prerecord_time), 0, "prerecording time", NULL }, /* 0...30 */ 314 {5, S_O(rec_prerecord_time), 0, "prerecording time", NULL }, /* 0...30 */
315 {1, S_O(rec_directory), 0, /* rec_base_directory */ 315 {1, S_O(rec_directory), 0, /* rec_base_directory */
316 "rec directory", REC_BASE_DIR ",current" }, 316 "rec directory", REC_BASE_DIR ",current" },
317#endif 317#endif