From 0f7ff15d86d6734858c1d93becda73efb73c566c Mon Sep 17 00:00:00 2001 From: Markus Braun Date: Sun, 16 Feb 2003 12:39:07 +0000 Subject: 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 --- apps/settings.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps/settings.c') diff --git a/apps/settings.c b/apps/settings.c index 102b244..0a00fc7 100644 --- a/apps/settings.c +++ b/apps/settings.c @@ -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")) { -- cgit v1.1