diff options
author | Linus Nielsen Feltzing <linus@haxx.se> | 2003-04-28 23:15:54 +0000 |
---|---|---|
committer | Linus Nielsen Feltzing <linus@haxx.se> | 2003-04-28 23:15:54 +0000 |
commit | 0e712a4b260233b1ff5f9a54266d941053d01686 (patch) | |
tree | 1dd9836d87ebf3c3c06b25507a0ecf1ac4309bce /apps | |
parent | b6745853ce633826c12e346d1f25e5bb0a1a3b52 (diff) |
The independent frames option wasn't correctly loaded
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3628 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-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 5280b1d667..63ba04a356 100644 --- a/apps/settings.c +++ b/apps/settings.c @@ -625,7 +625,7 @@ void settings_load(void) if (config_block[0x1c] != 0xFF) { global_settings.peak_meter_hold = (config_block[0x1c]) & 0x1f; global_settings.rec_editable = - config_block[0x1c]?true:false; + (config_block[0x1c] & 0x80)?true:false; } if (config_block[0x1d] != 0xFF) |