summaryrefslogtreecommitdiff
path: root/apps/settings_menu.c
diff options
context:
space:
mode:
authorRani Hod <raenye@gmail.com>2006-07-23 22:18:32 +0000
committerRani Hod <raenye@gmail.com>2006-07-23 22:18:32 +0000
commitc657763a23797238b4f95f7d52ac4902fd05f306 (patch)
tree898bd9ad893de4904be01b16894aec99ece5f43d /apps/settings_menu.c
parent3c810c4f6ae374e1aed674b8171fcd220d58f13a (diff)
downloadrockbox-c657763a23797238b4f95f7d52ac4902fd05f306.tar.gz
rockbox-c657763a23797238b4f95f7d52ac4902fd05f306.zip
Accepted FS #5474 by yours truly.
Save your settings; CONFIG_BLOCK_VERSION is increased. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10303 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings_menu.c')
-rw-r--r--apps/settings_menu.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/settings_menu.c b/apps/settings_menu.c
index 3e02727f9e..f088c3be3d 100644
--- a/apps/settings_menu.c
+++ b/apps/settings_menu.c
@@ -266,7 +266,7 @@ static bool remote_caption_backlight(void)
266} 266}
267#endif /* HAVE_REMOTE_LCD */ 267#endif /* HAVE_REMOTE_LCD */
268 268
269#ifndef HAVE_LCD_COLOR 269#if !defined(HAVE_LCD_COLOR) || defined(IAUDIO_X5)
270static bool contrast(void) 270static bool contrast(void)
271{ 271{
272 return set_int( str(LANG_CONTRAST), "", UNIT_INT, 272 return set_int( str(LANG_CONTRAST), "", UNIT_INT,
@@ -1776,12 +1776,12 @@ static bool lcd_settings_menu(void)
1776 { ID2P(LANG_BACKLIGHT_FADE_IN), backlight_fade_in }, 1776 { ID2P(LANG_BACKLIGHT_FADE_IN), backlight_fade_in },
1777 { ID2P(LANG_BACKLIGHT_FADE_OUT), backlight_fade_out }, 1777 { ID2P(LANG_BACKLIGHT_FADE_OUT), backlight_fade_out },
1778#endif 1778#endif
1779 { ID2P(LANG_BACKLIGHT_FILTER_FIRST_KEYPRESS), set_bl_filter_first_keypress },
1779#ifdef HAVE_BACKLIGHT_BRIGHTNESS 1780#ifdef HAVE_BACKLIGHT_BRIGHTNESS
1780 { ID2P(LANG_BRIGHTNESS), brightness }, 1781 { ID2P(LANG_BRIGHTNESS), brightness },
1781#endif 1782#endif
1782 { ID2P(LANG_BACKLIGHT_FILTER_FIRST_KEYPRESS), set_bl_filter_first_keypress },
1783#endif /* CONFIG_BACKLIGHT */ 1783#endif /* CONFIG_BACKLIGHT */
1784#ifndef HAVE_LCD_COLOR 1784#if !defined(HAVE_LCD_COLOR) || defined(IAUDIO_X5)
1785 { ID2P(LANG_CONTRAST), contrast }, 1785 { ID2P(LANG_CONTRAST), contrast },
1786#endif 1786#endif
1787#ifdef HAVE_LCD_BITMAP 1787#ifdef HAVE_LCD_BITMAP