summaryrefslogtreecommitdiff
path: root/apps/plugins/star.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/star.c')
-rw-r--r--apps/plugins/star.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/apps/plugins/star.c b/apps/plugins/star.c
index bb216bf17c..0ed902dedb 100644
--- a/apps/plugins/star.c
+++ b/apps/plugins/star.c
@@ -1002,7 +1002,10 @@ static bool star_help(void)
1002 { 35, C_RED }, 1002 { 35, C_RED },
1003 { -1, 0 } 1003 { -1, 0 }
1004 }; 1004 };
1005 1005#ifndef HAVE_LCD_COLOR
1006 rb->lcd_set_background(LCD_WHITE );
1007 rb->lcd_set_foreground(LCD_BLACK );
1008#endif
1006 if (display_text(WORDS, help_text, formation, NULL)) 1009 if (display_text(WORDS, help_text, formation, NULL))
1007 return true; 1010 return true;
1008 do { 1011 do {
@@ -1012,6 +1015,10 @@ static bool star_help(void)
1012 } while( ( button == BUTTON_NONE ) 1015 } while( ( button == BUTTON_NONE )
1013 || ( button & (BUTTON_REL|BUTTON_REPEAT) ) ); 1016 || ( button & (BUTTON_REL|BUTTON_REPEAT) ) );
1014 1017
1018#ifndef HAVE_LCD_COLOR
1019 rb->lcd_set_background(LCD_BLACK );
1020 rb->lcd_set_foreground(LCD_WHITE );
1021#endif
1015 return false; 1022 return false;
1016} 1023}
1017 1024