diff --git a/apps/settings.h b/apps/settings.h index 283d719b5a..64b86084e8 100644 --- a/apps/settings.h +++ b/apps/settings.h @@ -78,7 +78,7 @@ struct user_settings int loop_playlist; /* do we return to top of playlist at end? */ bool mp3filter; /* only display mp3/m3u files and dirs in directory? */ 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; int ff_rewind_min_step; /* FF/Rewind minimum step size */ int ff_rewind_accel; /* FF/Rewind acceleration (in seconds per doubling) */ diff --git a/apps/settings_menu.c b/apps/settings_menu.c index 47efb1e55d..cc8d65d20f 100644 --- a/apps/settings_menu.c +++ b/apps/settings_menu.c @@ -93,7 +93,7 @@ static Menu backlight_timer(void) static Menu scroll_speed(void) { set_int("Scroll Speed", "", &global_settings.scroll_speed, - &lcd_scroll_speed, 1, 1, 20 ); + &lcd_scroll_speed, 1, 1, 30 ); return MENU_OK; }