Changing default scroll delay to 1000ms (1 second).

The setting is an unsigned char so the prior default value was way out of bounds...


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3073 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Kjell Ericson 2003-01-13 10:30:19 +00:00
parent f5aa13a88f
commit 69762cc0f2

View File

@ -853,7 +853,7 @@ void settings_reset(void) {
global_settings.battery_type = 0;
global_settings.scroll_speed = 8;
global_settings.bidir_limit = 50;
global_settings.scroll_delay = 500;
global_settings.scroll_delay = 100;
global_settings.scroll_step = 6;
global_settings.ff_rewind_min_step = DEFAULT_FF_REWIND_MIN_STEP;
global_settings.ff_rewind_accel = DEFAULT_FF_REWIND_ACCEL_SETTING;