summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNils Wallménius <nils@rockbox.org>2009-01-03 13:41:54 +0000
committerNils Wallménius <nils@rockbox.org>2009-01-03 13:41:54 +0000
commit071e3ef69161a1f0ce41d6c61b9292e0e52f5d4d (patch)
treeb9c266882a1f0c06a3f19c30f5f6edd3cb19b42a
parent4b472de39b30c079ff846aec83d2da33cc0adcc5 (diff)
downloadrockbox-071e3ef69161a1f0ce41d6c61b9292e0e52f5d4d.tar.gz
rockbox-071e3ef69161a1f0ce41d6c61b9292e0e52f5d4d.zip
Fix some reds.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19657 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/settings.h2
-rw-r--r--apps/settings_list.c3
2 files changed, 3 insertions, 2 deletions
diff --git a/apps/settings.h b/apps/settings.h
index e48e5b5dd0..efa50f78dd 100644
--- a/apps/settings.h
+++ b/apps/settings.h
@@ -665,7 +665,6 @@ struct user_settings
665 int jump_scroll_delay; /* Delay between jump scroll screens */ 665 int jump_scroll_delay; /* Delay between jump scroll screens */
666#endif 666#endif
667 667
668#ifdef HAVE_BACKLIGHT
669 int backlight_timeout; /* backlight off timeout: 0-18 0=never, 668 int backlight_timeout; /* backlight off timeout: 0-18 0=never,
670 1=always, 669 1=always,
671 then according to timeout_values[] */ 670 then according to timeout_values[] */
@@ -693,7 +692,6 @@ struct user_settings
693#ifdef HAVE_BACKLIGHT_BRIGHTNESS 692#ifdef HAVE_BACKLIGHT_BRIGHTNESS
694 int brightness; 693 int brightness;
695#endif 694#endif
696#endif /* HAVE_BACKLIGHT */
697 695
698#ifdef HAVE_REMOTE_LCD 696#ifdef HAVE_REMOTE_LCD
699 /* remote lcd */ 697 /* remote lcd */
diff --git a/apps/settings_list.c b/apps/settings_list.c
index 18bcb8ea2c..3618c16aa2 100644
--- a/apps/settings_list.c
+++ b/apps/settings_list.c
@@ -1052,8 +1052,11 @@ const struct settings_list settings[] = {
1052 "folder navigation", "off,on,random",NULL ,3, 1052 "folder navigation", "off,on,random",NULL ,3,
1053 ID2P(LANG_SET_BOOL_NO), ID2P(LANG_SET_BOOL_YES), 1053 ID2P(LANG_SET_BOOL_NO), ID2P(LANG_SET_BOOL_YES),
1054 ID2P(LANG_RANDOM)), 1054 ID2P(LANG_RANDOM)),
1055
1056#ifdef HAVE_TAGCACHE
1055 OFFON_SETTING(0, runtimedb, LANG_RUNTIMEDB_ACTIVE, false, 1057 OFFON_SETTING(0, runtimedb, LANG_RUNTIMEDB_ACTIVE, false,
1056 "gather runtime data", NULL), 1058 "gather runtime data", NULL),
1059#endif
1057 1060
1058#if CONFIG_CODEC == SWCODEC 1061#if CONFIG_CODEC == SWCODEC
1059 /* replay gain */ 1062 /* replay gain */