summaryrefslogtreecommitdiff
path: root/apps/plugins/fireworks.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/fireworks.c')
-rw-r--r--apps/plugins/fireworks.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/apps/plugins/fireworks.c b/apps/plugins/fireworks.c
index febd093e3f..54a6d07c20 100644
--- a/apps/plugins/fireworks.c
+++ b/apps/plugins/fireworks.c
@@ -35,10 +35,17 @@ static const struct button_mapping *plugin_contexts[] = { pla_main_ctx };
35 35
36/* We use PLA */ 36/* We use PLA */
37#define BTN_EXIT PLA_EXIT 37#define BTN_EXIT PLA_EXIT
38#define BTN_MENU PLA_CANCEL
39#define BTN_FIRE PLA_SELECT 38#define BTN_FIRE PLA_SELECT
40#define BTN_FIRE_REPEAT PLA_SELECT_REPEAT 39#define BTN_FIRE_REPEAT PLA_SELECT_REPEAT
41 40
41#if (CONFIG_KEYPAD == IPOD_1G2G_PAD) \
42 || (CONFIG_KEYPAD == IPOD_3G_PAD) \
43 || (CONFIG_KEYPAD == IPOD_4G_PAD)
44#define BTN_MENU PLA_UP
45#else
46#define BTN_MENU PLA_CANCEL
47#endif
48
42/* The lowdown on source terminology: 49/* The lowdown on source terminology:
43 * a ROCKET is launched from the LCD bottom. 50 * a ROCKET is launched from the LCD bottom.
44 * FIREWORKs are ejected from the rocket when it explodes. */ 51 * FIREWORKs are ejected from the rocket when it explodes. */