From 3a4f8cd5d730713be95694528da9bdb17ffdc72b Mon Sep 17 00:00:00 2001 From: Thomas Martitz Date: Fri, 24 Feb 2012 15:06:18 +0100 Subject: fireworks: ues PLA_EXIT to exit without going through the menu. Change-Id: I0902ce839b7eab4c7e1311ef797f19f91ebc582a --- apps/plugins/fireworks.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/apps/plugins/fireworks.c b/apps/plugins/fireworks.c index c49c4fd6bb..54efaba6ca 100644 --- a/apps/plugins/fireworks.c +++ b/apps/plugins/fireworks.c @@ -34,8 +34,8 @@ static const struct button_mapping *plugin_contexts[] = { pla_main_ctx }; ***/ /* We use PLA */ -#define BTN_MENU PLA_EXIT -#define BTN_MENU2 PLA_CANCEL +#define BTN_EXIT PLA_EXIT +#define BTN_MENU PLA_CANCEL #define BTN_FIRE PLA_SELECT #define BTN_FIRE_REPEAT PLA_SELECT_REPEAT @@ -506,8 +506,11 @@ enum plugin_status plugin_start(const void* parameter) switch(button) { + case BTN_EXIT: /* exit directly */ + quit_plugin = true; + break; + case BTN_MENU: /* back to config menu */ - case BTN_MENU2: fireworks_menu(); break; -- cgit v1.2.3