diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2006-10-11 02:24:57 +0000 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2006-10-11 02:24:57 +0000 |
| commit | dd7b8fcbe2d3f726599fad412e6373b9215abda6 (patch) | |
| tree | 5629972056c265550f950006c1968165487afa17 /apps/plugins/solitaire.c | |
| parent | 756ce4abcaa98b7ced5a98c4924b326b04920fd5 (diff) | |
| download | rockbox-dd7b8fcbe2d3f726599fad412e6373b9215abda6.zip rockbox-dd7b8fcbe2d3f726599fad412e6373b9215abda6.tar.gz rockbox-dd7b8fcbe2d3f726599fad412e6373b9215abda6.tar.bz2 rockbox-dd7b8fcbe2d3f726599fad412e6373b9215abda6.tar.xz | |
Fixed background color on solitaire menu. It wasn't set when entering menu and having a dark background made it almost unreadable.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11182 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/solitaire.c')
| -rw-r--r-- | apps/plugins/solitaire.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/solitaire.c b/apps/plugins/solitaire.c index 9353313..87f48d9 100644 --- a/apps/plugins/solitaire.c +++ b/apps/plugins/solitaire.c @@ -534,6 +534,7 @@ int solitaire_menu(bool in_game) struct menu_item items[4]; #if LCD_DEPTH > 1 + rb->lcd_set_background(LCD_DEFAULT_BG); rb->lcd_set_foreground(LCD_DEFAULT_FG); #endif @@ -1050,7 +1051,6 @@ int solitaire( void ) rb->lcd_clear_display(); #if LCD_DEPTH > 1 - rb->lcd_set_background(LCD_DEFAULT_BG); rb->lcd_set_foreground(LCD_BLACK); #endif |