diff options
Diffstat (limited to 'apps/plugins/spacerocks.c')
| -rw-r--r-- | apps/plugins/spacerocks.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/apps/plugins/spacerocks.c b/apps/plugins/spacerocks.c index 778733c..d4fc45f 100644 --- a/apps/plugins/spacerocks.c +++ b/apps/plugins/spacerocks.c @@ -604,13 +604,16 @@ static bool spacerocks_help(void) }; static struct style_text formation[]={ { 0, TEXT_CENTER|TEXT_UNDERLINE }, - { 2, C_RED } + { 2, C_RED }, + { -1, 0 } }; +#ifdef HAVE_LCD_COLOR + rb->lcd_set_background(LCD_BLACK); + rb->lcd_set_foreground(LCD_WHITE); +#endif int button; - if (display_text(WORDS, help_text, formation, NULL)==PLUGIN_USB_CONNECTED) return true; - do { button = rb->button_get(true); if (button == SYS_USB_CONNECTED) { |