diff options
| -rw-r--r-- | apps/plugins/star.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/plugins/star.c b/apps/plugins/star.c index 0ed902d..3b128d0 100644 --- a/apps/plugins/star.c +++ b/apps/plugins/star.c @@ -1002,10 +1002,12 @@ static bool star_help(void) { 35, C_RED }, { -1, 0 } }; +#if LCD_DEPTH > 1 #ifndef HAVE_LCD_COLOR rb->lcd_set_background(LCD_WHITE ); rb->lcd_set_foreground(LCD_BLACK ); #endif +#endif if (display_text(WORDS, help_text, formation, NULL)) return true; do { @@ -1014,11 +1016,12 @@ static bool star_help(void) return true; } while( ( button == BUTTON_NONE ) || ( button & (BUTTON_REL|BUTTON_REPEAT) ) ); - +#if LCD_DEPTH > 1 #ifndef HAVE_LCD_COLOR rb->lcd_set_background(LCD_BLACK ); rb->lcd_set_foreground(LCD_WHITE ); #endif +#endif return false; } |