diff options
author | Rafaël Carré <rafael.carre@gmail.com> | 2009-05-20 11:15:08 +0000 |
---|---|---|
committer | Rafaël Carré <rafael.carre@gmail.com> | 2009-05-20 11:15:08 +0000 |
commit | a57a39148349b1af9f342e065f03b871ba17282d (patch) | |
tree | 48593c55fe3724db71c7c6ca5c04da86b3cd0545 /apps/plugins/pong.c | |
parent | 6cae42fccae3202834dcfcb9ac430f7f432edaca (diff) |
Sansa Fuze : fix r20680 for pong plugin (BUTTON_REPEAT can't be used)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20994 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/pong.c')
-rw-r--r-- | apps/plugins/pong.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/pong.c b/apps/plugins/pong.c index 0411b55c07..cb47d664cc 100644 --- a/apps/plugins/pong.c +++ b/apps/plugins/pong.c @@ -113,7 +113,7 @@ PLUGIN_HEADER #define PONG_RIGHT_DOWN BUTTON_RIGHT #elif (CONFIG_KEYPAD == SANSA_FUZE_PAD) -#define PONG_QUIT (BUTTON_HOME|BUTTON_REPEAT) +#define PONG_QUIT BUTTON_HOME #define PONG_PAUSE BUTTON_SELECT #define PONG_LEFT_UP BUTTON_LEFT #define PONG_LEFT_DOWN BUTTON_DOWN |