From 364de2c13f3cbc13d73d20841f5c7d928ad57b92 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 27 May 2003 13:10:50 +0000 Subject: Vincent Kujala's bug report and fix #742131 git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3698 a1c6a512-1295-4272-9138-f99709370657 --- apps/settings.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps') 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) 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; } -- cgit v1.2.3