diff options
| author | Torne Wuff <torne@wolfpuppy.org.uk> | 2009-11-17 22:10:22 +0000 |
|---|---|---|
| committer | Torne Wuff <torne@wolfpuppy.org.uk> | 2009-11-17 22:10:22 +0000 |
| commit | 9ccccce65505541548bfba6dcf5b280f3ebc785e (patch) | |
| tree | 69fd08444192aabe21bfdd478c9f343a875cd03a /apps/plugins | |
| parent | 9848d4beecc23d1fb3bd548c60ee8b37b223773b (diff) | |
| download | rockbox-9ccccce65505541548bfba6dcf5b280f3ebc785e.zip rockbox-9ccccce65505541548bfba6dcf5b280f3ebc785e.tar.gz rockbox-9ccccce65505541548bfba6dcf5b280f3ebc785e.tar.bz2 rockbox-9ccccce65505541548bfba6dcf5b280f3ebc785e.tar.xz | |
Fix FS#10546 - metronome doesn't work on h1xx/h3xx.
Button mapping table was wrong after some pluginlib_action changes a while ago. Same problem in the Ondio mappings, so I fixed that too.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23658 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/metronome.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/metronome.c b/apps/plugins/metronome.c index 10b9e41..c5d27fa 100644 --- a/apps/plugins/metronome.c +++ b/apps/plugins/metronome.c @@ -636,7 +636,7 @@ static const struct button_mapping ondio_action[] = { {METRONOME_PLAY_TAP, BUTTON_MENU|BUTTON_REL, BUTTON_MENU }, {METRONOME_PAUSE, BUTTON_MENU|BUTTON_REPEAT, BUTTON_NONE }, - {CONTEXT_CUSTOM,BUTTON_NONE,BUTTON_NONE} + LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_PLUGIN) }; #else /* !ONDIO_PAD */ #define METRONOME_TAP PLA_FIRE @@ -649,7 +649,7 @@ static const struct button_mapping ondio_action[] = static const struct button_mapping iriver_syncaction[] = { {METRONOME_SYNC, BUTTON_REC, BUTTON_NONE }, - {CONTEXT_CUSTOM,BUTTON_NONE,BUTTON_NONE} + LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_PLUGIN) }; #endif /* IRIVER_H100_PAD||IRIVER_H300_PAD */ #endif /* #if CONFIG_KEYPAD == ONDIO_PAD */ |