mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-14 10:37:38 -04:00
Define a specific exit button. Stops the plugin from exiting prematurely, e.g. due to a button release event.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20010 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
281227321e
commit
c2ba5b4c07
1 changed files with 13 additions and 1 deletions
|
@ -23,6 +23,17 @@
|
||||||
#include "lib/grey.h"
|
#include "lib/grey.h"
|
||||||
#include "lib/pluginlib_bmp.h"
|
#include "lib/pluginlib_bmp.h"
|
||||||
|
|
||||||
|
#if (CONFIG_KEYPAD == IPOD_4G_PAD) || (CONFIG_KEYPAD == IPOD_3G_PAD) || \
|
||||||
|
(CONFIG_KEYPAD == IPOD_1G2G_PAD)
|
||||||
|
#define GBS_QUIT BUTTON_MENU
|
||||||
|
#elif CONFIG_KEYPAD == IAUDIO_M3_PAD
|
||||||
|
#define GBS_QUIT BUTTON_RC_REC
|
||||||
|
#elif defined(BUTTON_OFF)
|
||||||
|
#define GBS_QUIT BUTTON_OFF
|
||||||
|
#else
|
||||||
|
#define GBS_QUIT BUTTON_POWER
|
||||||
|
#endif
|
||||||
|
|
||||||
#if LCD_DEPTH == 1
|
#if LCD_DEPTH == 1
|
||||||
#define BMP_LOAD read_bmp_file
|
#define BMP_LOAD read_bmp_file
|
||||||
#else
|
#else
|
||||||
|
@ -74,7 +85,8 @@ enum plugin_status plugin_start(const void* parameter)
|
||||||
grey_ub_gray_bitmap(grey_bm_buf, x, y, grey_bm.width, grey_bm.height);
|
grey_ub_gray_bitmap(grey_bm_buf, x, y, grey_bm.width, grey_bm.height);
|
||||||
grey_show(true);
|
grey_show(true);
|
||||||
|
|
||||||
rb->button_get(true);
|
/* wait until user closes plugin */
|
||||||
|
while (rb->button_get(true) != GBS_QUIT);
|
||||||
|
|
||||||
grey_release();
|
grey_release();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue