diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2003-05-27 13:10:50 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2003-05-27 13:10:50 +0000 |
| commit | 364de2c13f3cbc13d73d20841f5c7d928ad57b92 (patch) | |
| tree | 3caa975b8a25ff88fbb0b87188d5e3a6972f5239 | |
| parent | 6143eeb22bac4306031bd96307f3428483c09273 (diff) | |
| download | rockbox-364de2c13f3cbc13d73d20841f5c7d928ad57b92.zip rockbox-364de2c13f3cbc13d73d20841f5c7d928ad57b92.tar.gz rockbox-364de2c13f3cbc13d73d20841f5c7d928ad57b92.tar.bz2 rockbox-364de2c13f3cbc13d73d20841f5c7d928ad57b92.tar.xz | |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings.c b/apps/settings.c index 5c12422..368f05f 100644 --- a/apps/settings.c +++ b/apps/settings.c @@ -686,7 +686,7 @@ void settings_load(void) global_settings.topruntime = config_block[0x28] | (config_block[0x29] << 8); - if (config_block[0x29] != 0xae) { + if (config_block[0xae] != 0xff) { global_settings.fade_on_stop = config_block[0xae] & 1; global_settings.caption_backlight = (config_block[0xae] >> 1) & 1; } |