diff options
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; } |