The independent frames option wasn't correctly loaded
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3628 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
b6745853ce
commit
0e712a4b26
1 changed files with 1 additions and 1 deletions
|
@ -625,7 +625,7 @@ void settings_load(void)
|
||||||
if (config_block[0x1c] != 0xFF) {
|
if (config_block[0x1c] != 0xFF) {
|
||||||
global_settings.peak_meter_hold = (config_block[0x1c]) & 0x1f;
|
global_settings.peak_meter_hold = (config_block[0x1c]) & 0x1f;
|
||||||
global_settings.rec_editable =
|
global_settings.rec_editable =
|
||||||
config_block[0x1c]?true:false;
|
(config_block[0x1c] & 0x80)?true:false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (config_block[0x1d] != 0xFF)
|
if (config_block[0x1d] != 0xFF)
|
||||||
|
|
Loading…
Reference in a new issue