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:
parent
938395be72
commit
694f929a99
1 changed files with 4 additions and 0 deletions
|
@ -308,6 +308,10 @@ enum plugin_status plugin_start(const void* parameter)
|
|||
backlight_ignore_timeout();
|
||||
#endif
|
||||
|
||||
#if LCD_DEPTH>=16
|
||||
rb->lcd_set_foreground (LCD_WHITE);
|
||||
rb->lcd_set_background (LCD_BLACK);
|
||||
#endif
|
||||
rb->show_logo();
|
||||
|
||||
/* Show the logo for about 3 secs allowing the user to stop */
|
||||
|
|
Loading…
Reference in a new issue