1
0
Fork 0
forked from len0rd/rockbox

The settings for battery and volume display were reversed in the expanded .cfg

loader.


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3277 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Markus Braun 2003-02-16 12:39:07 +00:00
parent 2eff1c6821
commit 0f7ff15d86
2 changed files with 3 additions and 3 deletions

View file

@ -904,11 +904,11 @@ bool settings_load_config(char* file)
else if (!strcasecmp(name, "play selected"))
set_cfg_bool(&global_settings.play_selected, value);
else if (!strcasecmp(name, "volume display")) {
static char* options[] = {"numeric", "graphic"};
static char* options[] = {"graphic", "numeric"};
set_cfg_option(&global_settings.volume_type, value, options, 2);
}
else if (!strcasecmp(name, "battery display")) {
static char* options[] = {"numeric", "graphic"};
static char* options[] = {"graphic", "numeric"};
set_cfg_option(&global_settings.battery_type, value, options, 2);
}
else if (!strcasecmp(name, "time format")) {