forked from len0rd/rockbox
Explicitly set the foreground colour instead of using the user's default foreground colour. Fixes bug report #5117 (which was applicable to all Colour targets)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9642 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
24bf89259e
commit
5cce8fb99f
1 changed files with 3 additions and 0 deletions
|
@ -1292,9 +1292,12 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
|
||||||
|
|
||||||
/* Lets use the default font */
|
/* Lets use the default font */
|
||||||
rb->lcd_setfont(FONT_SYSFIXED);
|
rb->lcd_setfont(FONT_SYSFIXED);
|
||||||
|
|
||||||
#ifdef HAVE_LCD_COLOR
|
#ifdef HAVE_LCD_COLOR
|
||||||
|
rb->lcd_set_foreground(LCD_BLACK);
|
||||||
rb->lcd_set_background(LCD_WHITE);
|
rb->lcd_set_background(LCD_WHITE);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
load_all_levels();
|
load_all_levels();
|
||||||
|
|
||||||
if (num_levels == 0) {
|
if (num_levels == 0) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue