summaryrefslogtreecommitdiff
path: root/apps/plugins/test_fps.c
diff options
context:
space:
mode:
authorRafaël Carré <rafael.carre@gmail.com>2009-05-13 08:27:36 +0000
committerRafaël Carré <rafael.carre@gmail.com>2009-05-13 08:27:36 +0000
commite1f343afc782dd322d49dcdc09f53ed06be8c3e2 (patch)
tree571ce135ec2cb8b8b3ac36940f8a759246df527c /apps/plugins/test_fps.c
parent8033342d0fe3b977fc7cb1cd77ef408fc69f0878 (diff)
downloadrockbox-e1f343afc782dd322d49dcdc09f53ed06be8c3e2.tar.gz
rockbox-e1f343afc782dd322d49dcdc09f53ed06be8c3e2.zip
Sansa Fuze : Fix r20680/FS#10075 (long HOME to exit plugins)
Some plugins were forgotten : mpegplayer, test_fps, test_scanrate Some plugins use button_status() and can't use BUTTON_REL or BUTTON_REPEAT flags rockblox1d : use single press BUTTON_HOME doom : use single press BUTTON_HOME and BUTTON_POWER to open doors I may have forgotten some plugins, I didn't test them one by one git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20925 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/test_fps.c')
-rw-r--r--apps/plugins/test_fps.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/plugins/test_fps.c b/apps/plugins/test_fps.c
index c688a54de0..cba08f28d1 100644
--- a/apps/plugins/test_fps.c
+++ b/apps/plugins/test_fps.c
@@ -31,6 +31,8 @@ PLUGIN_IRAM_DECLARE
31#define FPS_QUIT BUTTON_MENU 31#define FPS_QUIT BUTTON_MENU
32#elif CONFIG_KEYPAD == IAUDIO_M3_PAD 32#elif CONFIG_KEYPAD == IAUDIO_M3_PAD
33#define FPS_QUIT BUTTON_RC_REC 33#define FPS_QUIT BUTTON_RC_REC
34#elif CONFIG_KEYPAD == SANSA_FUZE_PAD
35#define FPS_QUIT (BUTTON_HOME|BUTTON_REPEAT)
34#elif defined(BUTTON_OFF) 36#elif defined(BUTTON_OFF)
35#define FPS_QUIT BUTTON_OFF 37#define FPS_QUIT BUTTON_OFF
36#else 38#else