diff options
author | Jens Arnold <amiconn@rockbox.org> | 2004-10-15 20:30:29 +0000 |
---|---|---|
committer | Jens Arnold <amiconn@rockbox.org> | 2004-10-15 20:30:29 +0000 |
commit | 566eae2e119f3c57b1df0782ddcc29fccedbf816 (patch) | |
tree | fc8cced8cd199734b2185a20efdfd2ebbcce41bb /apps/settings.c | |
parent | 672305f0a1fe8e423904f95d5cb22aea68ff4c62 (diff) |
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.c | 4 |
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; -#define CONFIG_BLOCK_VERSION 17 +#define CONFIG_BLOCK_VERSION 18 #define CONFIG_BLOCK_SIZE 512 #define RTC_BLOCK_SIZE 44 @@ -250,7 +250,7 @@ static const struct bit_entry hd_bits[] = #ifdef HAVE_BACKLIGHT {1, S_O(caption_backlight), false, "caption backlight", off_on }, #endif - {5, S_O(scroll_speed), 8, "scroll speed", NULL }, /* 1...25 */ + {4, S_O(scroll_speed), 9, "scroll speed", NULL }, /* 0...15 */ {7, S_O(scroll_step), 6, "scroll step", NULL }, /* 1...112 */ {8, S_O(scroll_delay), 100, "scroll delay", NULL }, /* 0...250 */ {8, S_O(bidir_limit), 50, "bidir limit", NULL }, /* 0...200 */ |