forked from len0rd/rockbox
Scrolling now goes up to 30
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2179 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
c5b645b795
commit
90ca5cf42b
2 changed files with 2 additions and 2 deletions
|
|
@ -78,7 +78,7 @@ struct user_settings
|
||||||
int loop_playlist; /* do we return to top of playlist at end? */
|
int loop_playlist; /* do we return to top of playlist at end? */
|
||||||
bool mp3filter; /* only display mp3/m3u files and dirs in directory? */
|
bool mp3filter; /* only display mp3/m3u files and dirs in directory? */
|
||||||
bool sort_case; /* dir sort order: 0=case insensitive, 1=sensitive */
|
bool sort_case; /* dir sort order: 0=case insensitive, 1=sensitive */
|
||||||
int scroll_speed; /* long texts scrolling speed: 1-20 */
|
int scroll_speed; /* long texts scrolling speed: 1-30 */
|
||||||
bool playlist_shuffle;
|
bool playlist_shuffle;
|
||||||
int ff_rewind_min_step; /* FF/Rewind minimum step size */
|
int ff_rewind_min_step; /* FF/Rewind minimum step size */
|
||||||
int ff_rewind_accel; /* FF/Rewind acceleration (in seconds per doubling) */
|
int ff_rewind_accel; /* FF/Rewind acceleration (in seconds per doubling) */
|
||||||
|
|
|
||||||
|
|
@ -93,7 +93,7 @@ static Menu backlight_timer(void)
|
||||||
static Menu scroll_speed(void)
|
static Menu scroll_speed(void)
|
||||||
{
|
{
|
||||||
set_int("Scroll Speed", "", &global_settings.scroll_speed,
|
set_int("Scroll Speed", "", &global_settings.scroll_speed,
|
||||||
&lcd_scroll_speed, 1, 1, 20 );
|
&lcd_scroll_speed, 1, 1, 30 );
|
||||||
return MENU_OK;
|
return MENU_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue