forked from len0rd/rockbox
delay cant be >2500 since we store # of ticks in a single byte
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2978 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
b4b9e3b2f1
commit
89d8f76326
1 changed files with 1 additions and 1 deletions
|
@ -408,7 +408,7 @@ static bool scroll_delay(void)
|
|||
{
|
||||
int dummy = global_settings.scroll_delay * (HZ/10);
|
||||
int rc = set_int(str(LANG_SCROLL_DELAY), "ms", &dummy,
|
||||
&lcd_scroll_delay, 100, 0, 5000 );
|
||||
&lcd_scroll_delay, 100, 0, 2500 );
|
||||
global_settings.scroll_delay = dummy / (HZ/10);
|
||||
return rc;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue