diff options
| author | Barry Wardell <rockbox@barrywardell.net> | 2006-09-25 17:03:18 +0000 |
|---|---|---|
| committer | Barry Wardell <rockbox@barrywardell.net> | 2006-09-25 17:03:18 +0000 |
| commit | 2404913f45e06fae60d15ed2bf3cfcd5e739ab51 (patch) | |
| tree | 63972a1b05724fd84483879fc64d621d4b17fe21 /apps | |
| parent | d5429307d519bd4a44e021e940c38f2d43fdd130 (diff) | |
| download | rockbox-2404913f45e06fae60d15ed2bf3cfcd5e739ab51.zip rockbox-2404913f45e06fae60d15ed2bf3cfcd5e739ab51.tar.gz rockbox-2404913f45e06fae60d15ed2bf3cfcd5e739ab51.tar.bz2 rockbox-2404913f45e06fae60d15ed2bf3cfcd5e739ab51.tar.xz | |
Enable LCD invert setting in the menu for all targets that support it. This adds the menu option to H10 20GB and X5 builds.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11048 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/settings_menu.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/settings_menu.c b/apps/settings_menu.c index ab19c82..8f9fbe1 100644 --- a/apps/settings_menu.c +++ b/apps/settings_menu.c @@ -344,7 +344,7 @@ static bool contrast(void) #endif /* HAVE_LCD_CONTRAST */ #ifdef HAVE_LCD_BITMAP -#ifndef HAVE_LCD_COLOR +#ifdef HAVE_LCD_INVERT /** * Menu to set LCD Mode (normal/inverse) */ @@ -357,7 +357,7 @@ static bool invert(void) lcd_set_invert_display); return rc; } -#endif /* HAVE_LCD_COLOR */ +#endif /* HAVE_LCD_INVERT */ #ifdef HAVE_LCD_FLIP /** @@ -1868,7 +1868,7 @@ static bool lcd_settings_menu(void) { ID2P(LANG_CONTRAST), contrast }, #endif #ifdef HAVE_LCD_BITMAP -#ifndef HAVE_LCD_COLOR +#ifdef HAVE_LCD_INVERT { ID2P(LANG_INVERT), invert }, #endif #ifdef HAVE_LCD_FLIP |