forked from len0rd/rockbox
To avoid having to use the main unit when accidentally launching a plugin from the remote, plugins now support remote quit
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10157 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
7bbf53eae5
commit
0e027bd90c
39 changed files with 276 additions and 26 deletions
|
@ -95,6 +95,7 @@ PLUGIN_HEADER
|
|||
#define STAR_LEVEL_REPEAT (BUTTON_MODE | BUTTON_UP)
|
||||
#define STAR_MENU_RUN BUTTON_RIGHT
|
||||
|
||||
#define STAR_RC_QUIT BUTTON_RC_STOP
|
||||
#elif (CONFIG_KEYPAD == IPOD_4G_PAD) || \
|
||||
(CONFIG_KEYPAD == IPOD_3G_PAD)
|
||||
|
||||
|
@ -687,6 +688,9 @@ static int star_run_game(void)
|
|||
key = rb->button_get(true);
|
||||
switch (key)
|
||||
{
|
||||
#ifdef STAR_RC_QUIT
|
||||
case STAR_RC_QUIT:
|
||||
#endif
|
||||
case STAR_QUIT:
|
||||
return 0;
|
||||
|
||||
|
@ -905,6 +909,9 @@ static int star_menu(void)
|
|||
key = rb->button_get(false);
|
||||
switch (key)
|
||||
{
|
||||
#ifdef STAR_RC_QUIT
|
||||
case STAR_RC_QUIT:
|
||||
#endif
|
||||
case STAR_QUIT:
|
||||
return PLUGIN_OK;
|
||||
case STAR_UP:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue