summaryrefslogtreecommitdiff
path: root/apps/plugins/solitaire.c
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2005-12-19 00:11:28 +0000
committerDave Chapman <dave@dchapman.com>2005-12-19 00:11:28 +0000
commit0dc63c1b7145b0b37476bdd701b8d5c15ad038b3 (patch)
tree5b83cc73ca892f4faf669036da32abaff0d6b2fc /apps/plugins/solitaire.c
parent2a7bd9fb7b9698b949ae85e24b17921c807c323c (diff)
downloadrockbox-0dc63c1b7145b0b37476bdd701b8d5c15ad038b3.zip
rockbox-0dc63c1b7145b0b37476bdd701b8d5c15ad038b3.tar.gz
rockbox-0dc63c1b7145b0b37476bdd701b8d5c15ad038b3.tar.bz2
rockbox-0dc63c1b7145b0b37476bdd701b8d5c15ad038b3.tar.xz
Remove IPOD_NANO_PAD definition - the Nano's keypad has turned out to be identical to the other 4G models
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8262 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/solitaire.c')
-rw-r--r--apps/plugins/solitaire.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/solitaire.c b/apps/plugins/solitaire.c
index efecaa8..ea56e2a 100644
--- a/apps/plugins/solitaire.c
+++ b/apps/plugins/solitaire.c
@@ -102,7 +102,7 @@ static struct plugin_api* rb;
#define SOL_MENU_INFO BUTTON_MODE
#define SOL_MENU_INFO2 BUTTON_REC
-#elif (CONFIG_KEYPAD == IPOD_4G_PAD) || (CONFIG_KEYPAD == IPOD_NANO_PAD)
+#elif (CONFIG_KEYPAD == IPOD_4G_PAD)
#define SOL_QUIT (BUTTON_SELECT | BUTTON_MENU)
#define SOL_UP BUTTON_MENU
@@ -148,7 +148,7 @@ 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) || (CONFIG_KEYPAD == IPOD_NANO_PAD)
+#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."