summaryrefslogtreecommitdiff
path: root/apps/settings.c
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2004-10-15 20:30:29 +0000
committerJens Arnold <amiconn@rockbox.org>2004-10-15 20:30:29 +0000
commit566eae2e119f3c57b1df0782ddcc29fccedbf816 (patch)
treefc8cced8cd199734b2185a20efdfd2ebbcce41bb /apps/settings.c
parent672305f0a1fe8e423904f95d5cb22aea68ff4c62 (diff)
downloadrockbox-566eae2e119f3c57b1df0782ddcc29fccedbf816.tar.gz
rockbox-566eae2e119f3c57b1df0782ddcc29fccedbf816.zip
Logarithmic scroll speed setting: speed doubles every 3 steps.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5288 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings.c')
-rw-r--r--apps/settings.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/settings.c b/apps/settings.c
index bbb37db3f1..4bb9adbc81 100644
--- a/apps/settings.c
+++ b/apps/settings.c
@@ -71,7 +71,7 @@ const char rec_base_directory[] = REC_BASE_DIR;
71 71
72 72
73 73
74#define CONFIG_BLOCK_VERSION 17 74#define CONFIG_BLOCK_VERSION 18
75#define CONFIG_BLOCK_SIZE 512 75#define CONFIG_BLOCK_SIZE 512
76#define RTC_BLOCK_SIZE 44 76#define RTC_BLOCK_SIZE 44
77 77
@@ -250,7 +250,7 @@ static const struct bit_entry hd_bits[] =
250#ifdef HAVE_BACKLIGHT 250#ifdef HAVE_BACKLIGHT
251 {1, S_O(caption_backlight), false, "caption backlight", off_on }, 251 {1, S_O(caption_backlight), false, "caption backlight", off_on },
252#endif 252#endif
253 {5, S_O(scroll_speed), 8, "scroll speed", NULL }, /* 1...25 */ 253 {4, S_O(scroll_speed), 9, "scroll speed", NULL }, /* 0...15 */
254 {7, S_O(scroll_step), 6, "scroll step", NULL }, /* 1...112 */ 254 {7, S_O(scroll_step), 6, "scroll step", NULL }, /* 1...112 */
255 {8, S_O(scroll_delay), 100, "scroll delay", NULL }, /* 0...250 */ 255 {8, S_O(scroll_delay), 100, "scroll delay", NULL }, /* 0...250 */
256 {8, S_O(bidir_limit), 50, "bidir limit", NULL }, /* 0...200 */ 256 {8, S_O(bidir_limit), 50, "bidir limit", NULL }, /* 0...200 */