summaryrefslogtreecommitdiff
path: root/apps/plugins/brickmania.c
diff options
context:
space:
mode:
authorJohannes Schwarz <ubuntuxer@rockbox.org>2009-07-23 17:45:33 +0000
committerJohannes Schwarz <ubuntuxer@rockbox.org>2009-07-23 17:45:33 +0000
commit0d9b7ec73e71188632a4fd584dfd745aeb7571b3 (patch)
tree9b035784a8809984f953d367ec17a7fe0ba149a8 /apps/plugins/brickmania.c
parent06d51630c19b4d5d4933bb03d61f2d69cbb5454f (diff)
downloadrockbox-0d9b7ec73e71188632a4fd584dfd745aeb7571b3.tar.gz
rockbox-0d9b7ec73e71188632a4fd584dfd745aeb7571b3.zip
Fix wrong text colour in help, adapt pegbox manual to r21867
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22016 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/brickmania.c')
-rw-r--r--apps/plugins/brickmania.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/apps/plugins/brickmania.c b/apps/plugins/brickmania.c
index 61d0f17bf1..034ac9c770 100644
--- a/apps/plugins/brickmania.c
+++ b/apps/plugins/brickmania.c
@@ -779,11 +779,16 @@ static int brickmania_help(void)
779 { 67, C_GREEN }, 779 { 67, C_GREEN },
780 { 74, C_YELLOW }, 780 { 74, C_YELLOW },
781 { 80, C_RED }, 781 { 80, C_RED },
782 { -1, 0 }
782 }; 783 };
783 784
785#ifdef HAVE_LCD_COLOR
786 rb->lcd_set_background(LCD_BLACK);
787 rb->lcd_set_foreground(LCD_WHITE);
788#endif
789 int button;
784 if (display_text(WORDS, help_text, formation, NULL)==PLUGIN_USB_CONNECTED) 790 if (display_text(WORDS, help_text, formation, NULL)==PLUGIN_USB_CONNECTED)
785 return PLUGIN_USB_CONNECTED; 791 return PLUGIN_USB_CONNECTED;
786 int button;
787 do { 792 do {
788 button = rb->button_get(true); 793 button = rb->button_get(true);
789 if (button == SYS_USB_CONNECTED) { 794 if (button == SYS_USB_CONNECTED) {