diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2002-07-30 07:56:16 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2002-07-30 07:56:16 +0000 |
| commit | 17cf49a8c45f10ea22ee6c8fc187a7851aef10a9 (patch) | |
| tree | ffdb95851955248d6332a9ba7b29157b791d249a | |
| parent | 95c58003c3c0d094ce8b7b0ad420b2ea2c9d03fa (diff) | |
| download | rockbox-17cf49a8c45f10ea22ee6c8fc187a7851aef10a9.zip rockbox-17cf49a8c45f10ea22ee6c8fc187a7851aef10a9.tar.gz rockbox-17cf49a8c45f10ea22ee6c8fc187a7851aef10a9.tar.bz2 rockbox-17cf49a8c45f10ea22ee6c8fc187a7851aef10a9.tar.xz | |
Now updates the backlight timer and scroll speed after loading the settings
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1493 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/settings.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/settings.c b/apps/settings.c index ecc3a34..7f1c1af 100644 --- a/apps/settings.c +++ b/apps/settings.c @@ -31,6 +31,7 @@ #include "string.h" #include "ata.h" #include "power.h" +#include "backlight.h" struct user_settings global_settings; @@ -347,6 +348,8 @@ void settings_load(void) if (rtc_config_block[0x24] != 0xFF) memcpy(&global_settings.total_uptime, &rtc_config_block[0x24], 4); } + lcd_scroll_speed(global_settings.scroll_speed); + backlight_time(global_settings.backlight); } /* |