summaryrefslogtreecommitdiff
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) {
1258 rb->lcd_puts(0, 3, "POWER to exit"); 1258 rb->lcd_puts(0, 3, "POWER to exit");
1259 rb->lcd_puts(0, 4, "VOL+ to hit"); 1259 rb->lcd_puts(0, 4, "VOL+ to hit");
1260 rb->lcd_puts(0, 5, "VOL- to stay"); 1260 rb->lcd_puts(0, 5, "VOL- to stay");
1261 rb->lcd_puts(0, 6, "CENTER to double down"); 1261 rb->lcd_puts(0, 6, "SELECT to double down");
1262 rb->lcd_puts(0, 6, "RIGHT to view highscores "); 1262 rb->lcd_puts(0, 7, "RIGHT to view highscores ");
1263 rb->lcd_puts(0, 8, "MENU to save/resume");
1264 rb->snprintf(str, 21, "High Score: $%d", bj->highscores[0]);
1265 rb->lcd_puts(0, 9, str);
1266#elif CONFIG_KEYPAD == GIGABEAT_S_PAD
1267 rb->lcd_puts(0, 2, "PLAY to start");
1268 rb->lcd_puts(0, 3, "BACK to exit");
1269 rb->lcd_puts(0, 4, "VOL+ to hit");
1270 rb->lcd_puts(0, 5, "VOL- to stay");
1271 rb->lcd_puts(0, 6, "SELECT to double down");
1272 rb->lcd_puts(0, 7, "RIGHT to view highscores ");
1263 rb->lcd_puts(0, 8, "MENU to save/resume"); 1273 rb->lcd_puts(0, 8, "MENU to save/resume");
1264 rb->snprintf(str, 21, "High Score: $%d", bj->highscores[0]); 1274 rb->snprintf(str, 21, "High Score: $%d", bj->highscores[0]);
1265 rb->lcd_puts(0, 9, str); 1275 rb->lcd_puts(0, 9, str);
1266#elif CONFIG_KEYPAD == MROBE100_PAD 1276#elif CONFIG_KEYPAD == MROBE100_PAD
1267 rb->lcd_puts(0, 2, "CENTER to start"); 1277 rb->lcd_puts(0, 2, "SELECT to start");
1268 rb->lcd_puts(0, 3, "POWER to exit"); 1278 rb->lcd_puts(0, 3, "POWER to exit");
1269 rb->lcd_puts(0, 4, "MENU to hit"); 1279 rb->lcd_puts(0, 4, "MENU to hit");
1270 rb->lcd_puts(0, 5, "DISPLAY to stay"); 1280 rb->lcd_puts(0, 5, "DISPLAY to stay");
1271 rb->lcd_puts(0, 6, "DOWN to double down"); 1281 rb->lcd_puts(0, 6, "DOWN to double down");
1272 rb->lcd_puts(0, 6, "RIGHT to view highscores "); 1282 rb->lcd_puts(0, 7, "RIGHT to view highscores ");
1273 rb->lcd_puts(0, 8, "PLAY to save/resume"); 1283 rb->lcd_puts(0, 8, "PLAY to save/resume");
1274 rb->snprintf(str, 21, "High Score: $%d", bj->highscores[0]); 1284 rb->snprintf(str, 21, "High Score: $%d", bj->highscores[0]);
1275 rb->lcd_puts(0, 9, str); 1285 rb->lcd_puts(0, 9, str);