diff options
| author | Sebastian Leonhardt <sebastian.leonhardt@web.de> | 2015-12-27 18:14:41 +0100 |
|---|---|---|
| committer | Sebastian Leonhardt <sebastian.leonhardt@web.de> | 2015-12-27 18:14:41 +0100 |
| commit | 5e91ec14011656d8952007aceb99189cd28786ba (patch) | |
| tree | 6e0d8a4850f5f7ec85f01bf599e840c25659881f /apps/plugins/bounce.c | |
| parent | ad65f8cc71bfe9e98936d5f781263850a9d50cc0 (diff) | |
| download | rockbox-5e91ec14011656d8952007aceb99189cd28786ba.zip rockbox-5e91ec14011656d8952007aceb99189cd28786ba.tar.gz rockbox-5e91ec14011656d8952007aceb99189cd28786ba.tar.bz2 rockbox-5e91ec14011656d8952007aceb99189cd28786ba.tar.xz | |
Samsung YH820/92x keymap bugfixes
This patch fixes some (mostly small) plugin issues with the "big"
YH-keymap patch (a507b). Only one fix affects the main keymaps
(virtual keyboard "DONE" now exits after long key /release/ instead
of long button /press/).
Change-Id: Id34f925ebfa97ae4974cd9405fbe1fee4f597833
Diffstat (limited to 'apps/plugins/bounce.c')
| -rw-r--r-- | apps/plugins/bounce.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/apps/plugins/bounce.c b/apps/plugins/bounce.c index 9e0ae7b..29b1b8f 100644 --- a/apps/plugins/bounce.c +++ b/apps/plugins/bounce.c @@ -467,7 +467,13 @@ static int loopit(void) enum plugin_status plugin_start(const void* parameter) { int w, h; - char *off = "[Off] to stop"; + char *off = +#if (CONFIG_KEYPAD == SAMSUNG_YH920_PAD) || \ + (CONFIG_KEYPAD == SAMSUNG_YH820_PAD) + "[Rew] to stop"; +#else + "[Off] to stop"; +#endif (void)(parameter); |