summaryrefslogtreecommitdiff
path: root/apps/plugins
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
parentc70eb572c198fc1e7cb8c162ebb13586a55780bc (diff)
downloadrockbox-f286072941e85b70d9c374acb8c9ecfee65f06db.tar.gz
rockbox-f286072941e85b70d9c374acb8c9ecfee65f06db.zip
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')
-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 5a25f27e70..81bd820fb2 100644
--- a/apps/plugins/solitaire.c
+++ b/apps/plugins/solitaire.c
@@ -604,15 +604,15 @@ int solitaire_menu(unsigned char when_n)
604 604
605 button = rb->button_get(true); 605 button = rb->button_get(true);
606 switch(button){ 606 switch(button){
607 case BUTTON_UP: 607 case SOL_UP:
608 cursor = (cursor + MENU_LENGTH - 1)%MENU_LENGTH; 608 cursor = (cursor + MENU_LENGTH - 1)%MENU_LENGTH;
609 break; 609 break;
610 610
611 case BUTTON_DOWN: 611 case SOL_DOWN:
612 cursor = (cursor + 1)%MENU_LENGTH; 612 cursor = (cursor + 1)%MENU_LENGTH;
613 break; 613 break;
614 614
615 case BUTTON_LEFT: 615 case SOL_LEFT:
616 return MENU_RESUME; 616 return MENU_RESUME;
617 617
618 case SOL_MENU_RUN: 618 case SOL_MENU_RUN: