summaryrefslogtreecommitdiff
path: root/apps/plugins/solitaire.c
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2005-12-21 01:21:58 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2005-12-21 01:21:58 +0000
commitf286072941e85b70d9c374acb8c9ecfee65f06db (patch)
tree391617f6dbae66999597bc8be588eae430df2264 /apps/plugins/solitaire.c
parentc70eb572c198fc1e7cb8c162ebb13586a55780bc (diff)
downloadrockbox-f286072941e85b70d9c374acb8c9ecfee65f06db.zip
rockbox-f286072941e85b70d9c374acb8c9ecfee65f06db.tar.gz
rockbox-f286072941e85b70d9c374acb8c9ecfee65f06db.tar.bz2
rockbox-f286072941e85b70d9c374acb8c9ecfee65f06db.tar.xz
Even more button fixes for solitaire
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8272 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/solitaire.c')
-rw-r--r--apps/plugins/solitaire.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/solitaire.c b/apps/plugins/solitaire.c
index 5a25f27..81bd820 100644
--- a/apps/plugins/solitaire.c
+++ b/apps/plugins/solitaire.c
@@ -604,15 +604,15 @@ int solitaire_menu(unsigned char when_n)
button = rb->button_get(true);
switch(button){
- case BUTTON_UP:
+ case SOL_UP:
cursor = (cursor + MENU_LENGTH - 1)%MENU_LENGTH;
break;
- case BUTTON_DOWN:
+ case SOL_DOWN:
cursor = (cursor + 1)%MENU_LENGTH;
break;
- case BUTTON_LEFT:
+ case SOL_LEFT:
return MENU_RESUME;
case SOL_MENU_RUN: