summaryrefslogtreecommitdiff
path: root/apps/plugins/star.c
diff options
context:
space:
mode:
authorJohannes Schwarz <ubuntuxer@rockbox.org>2009-07-27 16:55:37 +0000
committerJohannes Schwarz <ubuntuxer@rockbox.org>2009-07-27 16:55:37 +0000
commit8ef07c8a2f43f3efb4993446a122e32f4ae23efc (patch)
treed18676d8224c9c472a425ea3e637fe9fe5e4d36f /apps/plugins/star.c
parent527b069653bf06661b8a9650e1f5eb2c6e7cc2bf (diff)
downloadrockbox-8ef07c8a2f43f3efb4993446a122e32f4ae23efc.tar.gz
rockbox-8ef07c8a2f43f3efb4993446a122e32f4ae23efc.zip
Fix some tiny bugs in the help screen from solitaire and star
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22071 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/star.c')
-rw-r--r--apps/plugins/star.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/apps/plugins/star.c b/apps/plugins/star.c
index bb216bf17c..0ed902dedb 100644
--- a/apps/plugins/star.c
+++ b/apps/plugins/star.c
@@ -1002,7 +1002,10 @@ static bool star_help(void)
1002 { 35, C_RED }, 1002 { 35, C_RED },
1003 { -1, 0 } 1003 { -1, 0 }
1004 }; 1004 };
1005 1005#ifndef HAVE_LCD_COLOR
1006 rb->lcd_set_background(LCD_WHITE );
1007 rb->lcd_set_foreground(LCD_BLACK );
1008#endif
1006 if (display_text(WORDS, help_text, formation, NULL)) 1009 if (display_text(WORDS, help_text, formation, NULL))
1007 return true; 1010 return true;
1008 do { 1011 do {
@@ -1012,6 +1015,10 @@ static bool star_help(void)
1012 } while( ( button == BUTTON_NONE ) 1015 } while( ( button == BUTTON_NONE )
1013 || ( button & (BUTTON_REL|BUTTON_REPEAT) ) ); 1016 || ( button & (BUTTON_REL|BUTTON_REPEAT) ) );
1014 1017
1018#ifndef HAVE_LCD_COLOR
1019 rb->lcd_set_background(LCD_BLACK );
1020 rb->lcd_set_foreground(LCD_WHITE );
1021#endif
1015 return false; 1022 return false;
1016} 1023}
1017 1024