summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2006-10-11 02:24:57 +0000
committerMichael Sevakis <jethead71@rockbox.org>2006-10-11 02:24:57 +0000
commitdd7b8fcbe2d3f726599fad412e6373b9215abda6 (patch)
tree5629972056c265550f950006c1968165487afa17 /apps
parent756ce4abcaa98b7ced5a98c4924b326b04920fd5 (diff)
downloadrockbox-dd7b8fcbe2d3f726599fad412e6373b9215abda6.tar.gz
rockbox-dd7b8fcbe2d3f726599fad412e6373b9215abda6.zip
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')
-rw-r--r--apps/plugins/solitaire.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/solitaire.c b/apps/plugins/solitaire.c
index 93533130ea..87f48d98e9 100644
--- a/apps/plugins/solitaire.c
+++ b/apps/plugins/solitaire.c
@@ -534,6 +534,7 @@ int solitaire_menu(bool in_game)
534 struct menu_item items[4]; 534 struct menu_item items[4];
535 535
536#if LCD_DEPTH > 1 536#if LCD_DEPTH > 1
537 rb->lcd_set_background(LCD_DEFAULT_BG);
537 rb->lcd_set_foreground(LCD_DEFAULT_FG); 538 rb->lcd_set_foreground(LCD_DEFAULT_FG);
538#endif 539#endif
539 540
@@ -1050,7 +1051,6 @@ int solitaire( void )
1050 rb->lcd_clear_display(); 1051 rb->lcd_clear_display();
1051 1052
1052#if LCD_DEPTH > 1 1053#if LCD_DEPTH > 1
1053 rb->lcd_set_background(LCD_DEFAULT_BG);
1054 rb->lcd_set_foreground(LCD_BLACK); 1054 rb->lcd_set_foreground(LCD_BLACK);
1055#endif 1055#endif
1056 1056