diff options
author | Jonathan Gordon <rockbox@jdgordon.info> | 2007-10-23 15:40:51 +0000 |
---|---|---|
committer | Jonathan Gordon <rockbox@jdgordon.info> | 2007-10-23 15:40:51 +0000 |
commit | 56ddddc274cf3fbefba2f7f634ca4bcb48778883 (patch) | |
tree | 1703b0f80588bddcd096bdc1384b8bc838e7246b /apps/plugins/stopwatch.c | |
parent | a3117328e943c23cf542059386e2ce53a0e796fe (diff) |
make the first bunch of plugins compile for the mrobe. an earlier commit broke the loading though, need to sort that out
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15282 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/stopwatch.c')
-rw-r--r-- | apps/plugins/stopwatch.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/plugins/stopwatch.c b/apps/plugins/stopwatch.c index d36a774447..3a863e8fd9 100644 --- a/apps/plugins/stopwatch.c +++ b/apps/plugins/stopwatch.c @@ -115,6 +115,13 @@ PLUGIN_HEADER #define STOPWATCH_LAP_TIMER BUTTON_FF #define STOPWATCH_SCROLL_UP BUTTON_SCROLL_UP #define STOPWATCH_SCROLL_DOWN BUTTON_SCROLL_DOWN +#elif CONFIG_KEYPAD == MROBE500_PAD +#define STOPWATCH_QUIT BUTTON_POWER +#define STOPWATCH_START_STOP BUTTON_RC_HEART +#define STOPWATCH_RESET_TIMER BUTTON_RC_MODE +#define STOPWATCH_LAP_TIMER BUTTON_RC_PLAY +#define STOPWATCH_SCROLL_UP BUTTON_RIGHT +#define STOPWATCH_SCROLL_DOWN BUTTON_LEFT #endif static struct plugin_api* rb; |