summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins')
-rw-r--r--apps/plugins/bounce.c6
-rw-r--r--apps/plugins/logo.c6
2 files changed, 12 insertions, 0 deletions
diff --git a/apps/plugins/bounce.c b/apps/plugins/bounce.c
index 7b59841055..cad0379b50 100644
--- a/apps/plugins/bounce.c
+++ b/apps/plugins/bounce.c
@@ -58,6 +58,12 @@ PLUGIN_HEADER
58#define BOUNCE_QUIT (BUTTON_MENU | BUTTON_REL) 58#define BOUNCE_QUIT (BUTTON_MENU | BUTTON_REL)
59#define BOUNCE_MODE (BUTTON_SELECT | BUTTON_REL) 59#define BOUNCE_MODE (BUTTON_SELECT | BUTTON_REL)
60 60
61#elif (CONFIG_KEYPAD == IAUDIO_X5_PAD)
62#define BOUNCE_UP BUTTON_UP
63#define BOUNCE_DOWN BUTTON_DOWN
64#define BOUNCE_QUIT BUTTON_POWER
65#define BOUNCE_MODE BUTTON_PLAY
66
61#endif 67#endif
62 68
63static struct plugin_api* rb; 69static struct plugin_api* rb;
diff --git a/apps/plugins/logo.c b/apps/plugins/logo.c
index c94136d0df..7fa00ee3b8 100644
--- a/apps/plugins/logo.c
+++ b/apps/plugins/logo.c
@@ -201,6 +201,12 @@ const unsigned char rockbox16x7[] = {
201#define LP_INC_X BUTTON_RIGHT 201#define LP_INC_X BUTTON_RIGHT
202#define LP_DEC_Y BUTTON_DOWN 202#define LP_DEC_Y BUTTON_DOWN
203#define LP_INC_Y BUTTON_UP 203#define LP_INC_Y BUTTON_UP
204#elif CONFIG_KEYPAD == IAUDIO_X5_PAD
205#define LP_QUIT BUTTON_MENU
206#define LP_DEC_X BUTTON_LEFT
207#define LP_INC_X BUTTON_RIGHT
208#define LP_DEC_Y BUTTON_DOWN
209#define LP_INC_Y BUTTON_UP
204#else 210#else
205#define LP_QUIT BUTTON_OFF 211#define LP_QUIT BUTTON_OFF
206#define LP_DEC_X BUTTON_LEFT 212#define LP_DEC_X BUTTON_LEFT