diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2008-03-23 08:26:42 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2008-03-23 08:26:42 +0000 |
| commit | 8bfefe9ce12720ce18f699f99ef90913046876ef (patch) | |
| tree | d1b3d07eecbab828550c1cad56424b61be1cbf68 /apps/plugins/blackjack.c | |
| parent | df4e4f59211f996b485cee44672e1627c752ef34 (diff) | |
| download | rockbox-8bfefe9ce12720ce18f699f99ef90913046876ef.zip rockbox-8bfefe9ce12720ce18f699f99ef90913046876ef.tar.gz rockbox-8bfefe9ce12720ce18f699f99ef90913046876ef.tar.bz2 rockbox-8bfefe9ce12720ce18f699f99ef90913046876ef.tar.xz | |
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.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/apps/plugins/blackjack.c b/apps/plugins/blackjack.c index f69ca1e..c9814ab 100644 --- a/apps/plugins/blackjack.c +++ b/apps/plugins/blackjack.c @@ -1184,6 +1184,16 @@ static unsigned int blackjack_menu(struct game_context* bj) { rb->lcd_puts(0, 7, "REC to view scores"); rb->snprintf(str, 21, "High Score: $%d", bj->highscores[0]); rb->lcd_puts(0, 9, str); +#elif CONFIG_KEYPAD == IAUDIO_M3_PAD + rb->lcd_puts(0, 2, "PLAY to start & to"); + rb->lcd_puts(0, 3, " hit"); + rb->lcd_puts(0, 4, "REC to exit"); + rb->lcd_puts(0, 5, "FF to stay"); + rb->lcd_puts(0, 6, "REW to double down"); + rb->lcd_puts(0, 7, "MODE to save/resume"); + rb->lcd_puts(0, 8, "MENU to view scores"); + rb->snprintf(str, 21, "High Score: $%d", bj->highscores[0]); + rb->lcd_puts(0, 10, str); #endif } else { rb->snprintf(str, 12, "%s", "High Scores"); |