summaryrefslogtreecommitdiffstats
path: root/apps/plugins/blackjack.c
diff options
context:
space:
mode:
authorNils Wallménius <nils@rockbox.org>2009-03-29 10:41:31 +0000
committerNils Wallménius <nils@rockbox.org>2009-03-29 10:41:31 +0000
commitcc5400d9cf64474d3d0e8c2a006a6078a189cd50 (patch)
tree9495a357235e3e30e3bcc40398e2242422894df3 /apps/plugins/blackjack.c
parentfaa22f6c54e173fc6858af09621935d03c808cbf (diff)
downloadrockbox-cc5400d9cf64474d3d0e8c2a006a6078a189cd50.tar.gz
rockbox-cc5400d9cf64474d3d0e8c2a006a6078a189cd50.zip
Accept FS#10068 by Teruaki Kawashima correcting the instructions built into a couple of plugins
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20565 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/blackjack.c')
-rw-r--r--apps/plugins/blackjack.c18
1 files changed, 14 insertions, 4 deletions
diff --git a/apps/plugins/blackjack.c b/apps/plugins/blackjack.c
index cb0a653db9..825d5544e2 100644
--- a/apps/plugins/blackjack.c
+++ b/apps/plugins/blackjack.c
@@ -1258,18 +1258,28 @@ static unsigned int blackjack_menu(struct game_context* bj) {
rb->lcd_puts(0, 3, "POWER to exit");
rb->lcd_puts(0, 4, "VOL+ to hit");
rb->lcd_puts(0, 5, "VOL- to stay");
- rb->lcd_puts(0, 6, "CENTER to double down");
- rb->lcd_puts(0, 6, "RIGHT to view highscores ");
+ rb->lcd_puts(0, 6, "SELECT to double down");
+ rb->lcd_puts(0, 7, "RIGHT to view highscores ");
+ rb->lcd_puts(0, 8, "MENU to save/resume");
+ rb->snprintf(str, 21, "High Score: $%d", bj->highscores[0]);
+ rb->lcd_puts(0, 9, str);
+#elif CONFIG_KEYPAD == GIGABEAT_S_PAD
+ rb->lcd_puts(0, 2, "PLAY to start");
+ rb->lcd_puts(0, 3, "BACK to exit");
+ rb->lcd_puts(0, 4, "VOL+ to hit");
+ rb->lcd_puts(0, 5, "VOL- to stay");
+ rb->lcd_puts(0, 6, "SELECT to double down");
+ rb->lcd_puts(0, 7, "RIGHT to view highscores ");
rb->lcd_puts(0, 8, "MENU to save/resume");
rb->snprintf(str, 21, "High Score: $%d", bj->highscores[0]);
rb->lcd_puts(0, 9, str);
#elif CONFIG_KEYPAD == MROBE100_PAD
- rb->lcd_puts(0, 2, "CENTER to start");
+ rb->lcd_puts(0, 2, "SELECT to start");
rb->lcd_puts(0, 3, "POWER to exit");
rb->lcd_puts(0, 4, "MENU to hit");
rb->lcd_puts(0, 5, "DISPLAY to stay");
rb->lcd_puts(0, 6, "DOWN to double down");
- rb->lcd_puts(0, 6, "RIGHT to view highscores ");
+ rb->lcd_puts(0, 7, "RIGHT to view highscores ");
rb->lcd_puts(0, 8, "PLAY to save/resume");
rb->snprintf(str, 21, "High Score: $%d", bj->highscores[0]);
rb->lcd_puts(0, 9, str);