summaryrefslogtreecommitdiff
path: root/apps/plugins/blackjack.c
diff options
context:
space:
mode:
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);