diff options
| author | Johannes Schwarz <ubuntuxer@rockbox.org> | 2009-07-27 16:55:37 +0000 |
|---|---|---|
| committer | Johannes Schwarz <ubuntuxer@rockbox.org> | 2009-07-27 16:55:37 +0000 |
| commit | 8ef07c8a2f43f3efb4993446a122e32f4ae23efc (patch) | |
| tree | d18676d8224c9c472a425ea3e637fe9fe5e4d36f /apps/plugins/star.c | |
| parent | 527b069653bf06661b8a9650e1f5eb2c6e7cc2bf (diff) | |
| download | rockbox-8ef07c8a2f43f3efb4993446a122e32f4ae23efc.zip rockbox-8ef07c8a2f43f3efb4993446a122e32f4ae23efc.tar.gz rockbox-8ef07c8a2f43f3efb4993446a122e32f4ae23efc.tar.bz2 rockbox-8ef07c8a2f43f3efb4993446a122e32f4ae23efc.tar.xz | |
Fix some tiny bugs in the help screen from solitaire and star
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22071 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/star.c')
| -rw-r--r-- | apps/plugins/star.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/apps/plugins/star.c b/apps/plugins/star.c index bb216bf..0ed902d 100644 --- a/apps/plugins/star.c +++ b/apps/plugins/star.c @@ -1002,7 +1002,10 @@ static bool star_help(void) { 35, C_RED }, { -1, 0 } }; - +#ifndef HAVE_LCD_COLOR + rb->lcd_set_background(LCD_WHITE ); + rb->lcd_set_foreground(LCD_BLACK ); +#endif if (display_text(WORDS, help_text, formation, NULL)) return true; do { @@ -1012,6 +1015,10 @@ static bool star_help(void) } while( ( button == BUTTON_NONE ) || ( button & (BUTTON_REL|BUTTON_REPEAT) ) ); +#ifndef HAVE_LCD_COLOR + rb->lcd_set_background(LCD_BLACK ); + rb->lcd_set_foreground(LCD_WHITE ); +#endif return false; } |