summaryrefslogtreecommitdiff
path: root/apps/plugins/blackjack.c
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2008-03-23 08:26:42 +0000
committerJens Arnold <amiconn@rockbox.org>2008-03-23 08:26:42 +0000
commit8bfefe9ce12720ce18f699f99ef90913046876ef (patch)
treed1b3d07eecbab828550c1cad56424b61be1cbf68 /apps/plugins/blackjack.c
parentdf4e4f59211f996b485cee44672e1627c752ef34 (diff)
downloadrockbox-8bfefe9ce12720ce18f699f99ef90913046876ef.tar.gz
rockbox-8bfefe9ce12720ce18f699f99ef90913046876ef.zip
VU_meter: Fix help texts for most targets. * Blackjack: Add help text for M3. * Bubbles: Adjust a text and fix hold behaviour for M3.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16757 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/blackjack.c')
-rw-r--r--apps/plugins/blackjack.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/apps/plugins/blackjack.c b/apps/plugins/blackjack.c
index f69ca1e6b0..c9814abf89 100644
--- a/apps/plugins/blackjack.c
+++ b/apps/plugins/blackjack.c
@@ -1184,6 +1184,16 @@ static unsigned int blackjack_menu(struct game_context* bj) {
1184 rb->lcd_puts(0, 7, "REC to view scores"); 1184 rb->lcd_puts(0, 7, "REC to view scores");
1185 rb->snprintf(str, 21, "High Score: $%d", bj->highscores[0]); 1185 rb->snprintf(str, 21, "High Score: $%d", bj->highscores[0]);
1186 rb->lcd_puts(0, 9, str); 1186 rb->lcd_puts(0, 9, str);
1187#elif CONFIG_KEYPAD == IAUDIO_M3_PAD
1188 rb->lcd_puts(0, 2, "PLAY to start & to");
1189 rb->lcd_puts(0, 3, " hit");
1190 rb->lcd_puts(0, 4, "REC to exit");
1191 rb->lcd_puts(0, 5, "FF to stay");
1192 rb->lcd_puts(0, 6, "REW to double down");
1193 rb->lcd_puts(0, 7, "MODE to save/resume");
1194 rb->lcd_puts(0, 8, "MENU to view scores");
1195 rb->snprintf(str, 21, "High Score: $%d", bj->highscores[0]);
1196 rb->lcd_puts(0, 10, str);
1187#endif 1197#endif
1188 } else { 1198 } else {
1189 rb->snprintf(str, 12, "%s", "High Scores"); 1199 rb->snprintf(str, 12, "%s", "High Scores");