summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2012-02-24 15:06:18 +0100
committerThomas Martitz <kugel@rockbox.org>2012-02-24 15:06:18 +0100
commit3a4f8cd5d730713be95694528da9bdb17ffdc72b (patch)
tree75fc44d24bcbbe939c14e1639990060c3a4ab746
parenta60bc256ab78482812d6900d08c59d4948e019a2 (diff)
downloadrockbox-3a4f8cd5d730713be95694528da9bdb17ffdc72b.tar.gz
rockbox-3a4f8cd5d730713be95694528da9bdb17ffdc72b.zip
fireworks: ues PLA_EXIT to exit without going through the menu.
Change-Id: I0902ce839b7eab4c7e1311ef797f19f91ebc582a
-rw-r--r--apps/plugins/fireworks.c9
1 files 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 };
34 ***/ 34 ***/
35 35
36/* We use PLA */ 36/* We use PLA */
37#define BTN_MENU PLA_EXIT 37#define BTN_EXIT PLA_EXIT
38#define BTN_MENU2 PLA_CANCEL 38#define BTN_MENU PLA_CANCEL
39#define BTN_FIRE PLA_SELECT 39#define BTN_FIRE PLA_SELECT
40#define BTN_FIRE_REPEAT PLA_SELECT_REPEAT 40#define BTN_FIRE_REPEAT PLA_SELECT_REPEAT
41 41
@@ -506,8 +506,11 @@ enum plugin_status plugin_start(const void* parameter)
506 506
507 switch(button) 507 switch(button)
508 { 508 {
509 case BTN_EXIT: /* exit directly */
510 quit_plugin = true;
511 break;
512
509 case BTN_MENU: /* back to config menu */ 513 case BTN_MENU: /* back to config menu */
510 case BTN_MENU2:
511 fireworks_menu(); 514 fireworks_menu();
512 break; 515 break;
513 516