diff options
| author | Christian Gmeiner <christian.gmeiner@gmail.com> | 2006-03-27 17:34:23 +0000 |
|---|---|---|
| committer | Christian Gmeiner <christian.gmeiner@gmail.com> | 2006-03-27 17:34:23 +0000 |
| commit | 7f9e1eb8014861a4cbb5ebb596e5d20cb58a102e (patch) | |
| tree | 8cb0b106f9819fe0591fcb87b5dd22a555b0c627 /apps/plugins | |
| parent | 2ff150793ad605afc7d376f61697c3ab43b45c05 (diff) | |
| download | rockbox-7f9e1eb8014861a4cbb5ebb596e5d20cb58a102e.zip rockbox-7f9e1eb8014861a4cbb5ebb596e5d20cb58a102e.tar.gz rockbox-7f9e1eb8014861a4cbb5ebb596e5d20cb58a102e.tar.bz2 rockbox-7f9e1eb8014861a4cbb5ebb596e5d20cb58a102e.tar.xz | |
x5: use as default BUTTON_POWER to close a plugin
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9294 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/fire.c | 2 | ||||
| -rw-r--r-- | apps/plugins/logo.c | 4 | ||||
| -rw-r--r-- | apps/plugins/plasma.c | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/apps/plugins/fire.c b/apps/plugins/fire.c index 722f2bf..2a4b96d 100644 --- a/apps/plugins/fire.c +++ b/apps/plugins/fire.c @@ -71,7 +71,7 @@ static unsigned char draw_buffer[8*LCD_WIDTH]; #define FIRE_DECREASE_MULT BUTTON_SCROLL_BACK #elif (CONFIG_KEYPAD == IAUDIO_X5_PAD) -#define FIRE_QUIT BUTTON_REC +#define FIRE_QUIT BUTTON_POWER #define FIRE_SWITCH_FLAMES_TYPE BUTTON_LEFT #define FIRE_SWITCH_FLAMES_MOVING BUTTON_RIGHT #define FIRE_INCREASE_MULT BUTTON_UP diff --git a/apps/plugins/logo.c b/apps/plugins/logo.c index 89aa753..d2d2d56 100644 --- a/apps/plugins/logo.c +++ b/apps/plugins/logo.c @@ -7,7 +7,7 @@ * \/ \/ \/ \/ \/ * $Id$ * - * Copyright (C) 2005 Jonas Häggqvist + * Copyright (C) 2005 Jonas H�gqvist * * All files in this archive are subject to the GNU General Public License. * See the file COPYING in the source tree root for full license agreement. @@ -197,7 +197,7 @@ const unsigned char rockbox16x7[] = { #define LP_DEC_Y BUTTON_DOWN #define LP_INC_Y BUTTON_UP #elif CONFIG_KEYPAD == IAUDIO_X5_PAD -#define LP_QUIT BUTTON_SELECT +#define LP_QUIT BUTTON_POWER #define LP_DEC_X BUTTON_LEFT #define LP_INC_X BUTTON_RIGHT #define LP_DEC_Y BUTTON_DOWN diff --git a/apps/plugins/plasma.c b/apps/plugins/plasma.c index c6e76a9..d8be446 100644 --- a/apps/plugins/plasma.c +++ b/apps/plugins/plasma.c @@ -60,7 +60,7 @@ static int plasma_frequency; #define PLASMA_INCREASE_FREQUENCY BUTTON_UP #define PLASMA_DECREASE_FREQUENCY BUTTON_DOWN #elif (CONFIG_KEYPAD == IAUDIO_X5_PAD) -#define PLASMA_QUIT BUTTON_REC +#define PLASMA_QUIT BUTTON_POWER #define PLASMA_INCREASE_FREQUENCY BUTTON_UP #define PLASMA_DECREASE_FREQUENCY BUTTON_DOWN #else |