diff options
Diffstat (limited to 'apps/plugins/brickmania.c')
-rw-r--r-- | apps/plugins/brickmania.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/apps/plugins/brickmania.c b/apps/plugins/brickmania.c index 61d0f17bf1..034ac9c770 100644 --- a/apps/plugins/brickmania.c +++ b/apps/plugins/brickmania.c @@ -779,11 +779,16 @@ static int brickmania_help(void) { 67, C_GREEN }, { 74, C_YELLOW }, { 80, 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 PLUGIN_USB_CONNECTED; - int button; do { button = rb->button_get(true); if (button == SYS_USB_CONNECTED) { |