Credits plugin: use black background

Sets the lcd background color to black and foreground color
to white when displaying the 16bit logo, so that it always
blends in with the background regardless of theme colors.

Change-Id: Ia3afde178866b84d194c2dd839dac24f8c6e8d05
This commit is contained in:
Christian Soffke 2021-12-09 21:35:53 +01:00 committed by Solomon Peachy
parent 938395be72
commit 694f929a99

View file

@ -308,6 +308,10 @@ enum plugin_status plugin_start(const void* parameter)
backlight_ignore_timeout(); backlight_ignore_timeout();
#endif #endif
#if LCD_DEPTH>=16
rb->lcd_set_foreground (LCD_WHITE);
rb->lcd_set_background (LCD_BLACK);
#endif
rb->show_logo(); rb->show_logo();
/* Show the logo for about 3 secs allowing the user to stop */ /* Show the logo for about 3 secs allowing the user to stop */