diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2012-03-03 07:52:13 -0500 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2012-03-03 07:52:13 -0500 |
| commit | d05db0a90c7bce7e6830e77a16c63a90e9e572c4 (patch) | |
| tree | 3af3b1406b2bc6a30f647abcc40865bee2f73022 /apps/plugins | |
| parent | f688710707f3af56a5949b8ae3957c9408b25392 (diff) | |
| download | rockbox-d05db0a90c7bce7e6830e77a16c63a90e9e572c4.zip rockbox-d05db0a90c7bce7e6830e77a16c63a90e9e572c4.tar.gz rockbox-d05db0a90c7bce7e6830e77a16c63a90e9e572c4.tar.bz2 rockbox-d05db0a90c7bce7e6830e77a16c63a90e9e572c4.tar.xz | |
Correct actionable offense for misappropriation of action context.
Just use a bool to indicate raw button instead of action code. No
bother with plugin version yet again so soon.
Change-Id: I4aa075c0c1fb5308c9d49bebb30ac76f671b2335
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/mpegplayer/mpeg_misc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/mpegplayer/mpeg_misc.c b/apps/plugins/mpegplayer/mpeg_misc.c index cbaca70..fc7fb87 100644 --- a/apps/plugins/mpegplayer/mpeg_misc.c +++ b/apps/plugins/mpegplayer/mpeg_misc.c @@ -216,7 +216,7 @@ int mpeg_button_get(int timeout) rb->button_get_w_tmo(timeout); /* Produce keyclick */ - rb->keyclick_click(CONTEXT_RAWBUTTON, button); + rb->keyclick_click(true, button); return mpeg_sysevent_callback(button, NULL); } |