Increased the maximum scroll speed to 25Hz

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4972 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2004-07-28 09:55:31 +00:00
parent c90319e24b
commit 2ffaed3285
2 changed files with 3 additions and 3 deletions

View file

@ -70,7 +70,7 @@ struct user_settings global_settings;
char rec_base_directory[] = REC_BASE_DIR;
#define CONFIG_BLOCK_VERSION 15
#define CONFIG_BLOCK_VERSION 16
#define CONFIG_BLOCK_SIZE 512
#define RTC_BLOCK_SIZE 44
@ -241,7 +241,7 @@ static const struct bit_entry hd_bits[] =
/* # of bits, offset+size, default, .cfg name, .cfg values */
/* more display */
{1, S_O(caption_backlight), false, "caption backlight", off_on },
{4, S_O(scroll_speed), 8, "scroll speed", NULL }, /* 1...10 */
{5, S_O(scroll_speed), 8, "scroll speed", NULL }, /* 1...25 */
{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 */

View file

@ -631,7 +631,7 @@ static bool scroll_speed(void)
{
return set_int(str(LANG_SCROLL), "Hz", UNIT_HERTZ,
&global_settings.scroll_speed,
&lcd_scroll_speed, 1, 1, 10 );
&lcd_scroll_speed, 1, 1, 25 );
}