1
0
Fork 0
forked from len0rd/rockbox

The default scroll parameters are now correctly applied to the remote, as suggested by Markus Kaufhold

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8011 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2005-11-20 09:54:57 +00:00
parent c80a5803c6
commit 062a0b3c58

View file

@ -854,6 +854,9 @@ void settings_apply(void)
lcd_remote_set_contrast(global_settings.remote_contrast);
lcd_remote_set_invert_display(global_settings.remote_invert);
lcd_remote_set_flip(global_settings.remote_flip_display);
lcd_remote_scroll_speed(global_settings.scroll_speed);
lcd_remote_scroll_step(global_settings.scroll_step);
lcd_remote_scroll_delay(global_settings.scroll_delay);
#ifdef HAVE_REMOTE_LCD_TICKING
lcd_remote_emireduce(global_settings.remote_reduce_ticking);
#endif