1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Michael Sevakis 2012-03-03 07:52:13 -05:00
parent f688710707
commit d05db0a90c
6 changed files with 6 additions and 11 deletions

View file

@ -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);
}