diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2005-12-21 00:25:05 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2005-12-21 00:25:05 +0000 |
| commit | b2295a4afb86634250a35312f056f3007eb9b42d (patch) | |
| tree | be9b0fbfe2cbd6051094cae97f111cd606f29ed6 /apps/plugins/solitaire.c | |
| parent | d2f0aa492e6e66d10e50243b0e1f708661178733 (diff) | |
| download | rockbox-b2295a4afb86634250a35312f056f3007eb9b42d.zip rockbox-b2295a4afb86634250a35312f056f3007eb9b42d.tar.gz rockbox-b2295a4afb86634250a35312f056f3007eb9b42d.tar.bz2 rockbox-b2295a4afb86634250a35312f056f3007eb9b42d.tar.xz | |
Even more iPod solitaire fixes
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8270 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/solitaire.c')
| -rw-r--r-- | apps/plugins/solitaire.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/plugins/solitaire.c b/apps/plugins/solitaire.c index 22cd20c..5a25f27 100644 --- a/apps/plugins/solitaire.c +++ b/apps/plugins/solitaire.c @@ -152,6 +152,13 @@ static struct plugin_api* rb; #define HELP_SOL_CUR2STACK "SELECT..: Put the card under the cursor on one of the 4 final stacks." #define HELP_SOL_REM2STACK "PLAY+RIGHT: Put the card on top of the remains' stack on one of the 4 final stacks." +#elif (CONFIG_KEYPAD == IPOD_4G_PAD) +#define HELP_SOL_MOVE "SELECT: Select cards, Move cards, reveal hidden cards ..." +#define HELP_SOL_DRAW "SELECT+PLAY: Un-select a card if it was selected. Else, draw 3 new cards out of the remains' stack." +#define HELP_SOL_REM2CUR "SELECT+LEFT: Put the card on top of the remains' stack on top of the cursor." +#define HELP_SOL_CUR2STACK "SELECT+RIGHT..: Put the card under the cursor on one of the 4 final stacks." +#define HELP_SOL_REM2STACK "LEFT+RIGHT: Put the card on top of the remains' stack on one of the 4 final stacks." + #endif #if LCD_DEPTH>1 |