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/misc.c | |
| 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/misc.c')
| -rw-r--r-- | apps/misc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/misc.c b/apps/misc.c index 78ee154..ca99a1d 100644 --- a/apps/misc.c +++ b/apps/misc.c @@ -887,13 +887,13 @@ void keyclick_set_callback(keyclick_callback cb, void* data) } /* Produce keyclick based upon button and global settings */ -void keyclick_click(int context, int action) +void keyclick_click(bool rawbutton, int action) { int button = action; static long last_button = BUTTON_NONE; bool do_beep = false; - if (!(context & CONTEXT_RAWBUTTON)) + if (!rawbutton) get_action_statuscode(&button); /* Settings filters */ |