summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-05-27 13:10:50 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-05-27 13:10:50 +0000
commit364de2c13f3cbc13d73d20841f5c7d928ad57b92 (patch)
tree3caa975b8a25ff88fbb0b87188d5e3a6972f5239
parent6143eeb22bac4306031bd96307f3428483c09273 (diff)
downloadrockbox-364de2c13f3cbc13d73d20841f5c7d928ad57b92.tar.gz
rockbox-364de2c13f3cbc13d73d20841f5c7d928ad57b92.zip
Vincent Kujala's bug report and fix #742131
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3698 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/settings.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings.c b/apps/settings.c
index 5c12422056..368f05ff9e 100644
--- a/apps/settings.c
+++ b/apps/settings.c
@@ -686,7 +686,7 @@ void settings_load(void)
686 global_settings.topruntime = 686 global_settings.topruntime =
687 config_block[0x28] | (config_block[0x29] << 8); 687 config_block[0x28] | (config_block[0x29] << 8);
688 688
689 if (config_block[0x29] != 0xae) { 689 if (config_block[0xae] != 0xff) {
690 global_settings.fade_on_stop = config_block[0xae] & 1; 690 global_settings.fade_on_stop = config_block[0xae] & 1;
691 global_settings.caption_backlight = (config_block[0xae] >> 1) & 1; 691 global_settings.caption_backlight = (config_block[0xae] >> 1) & 1;
692 } 692 }