forked from len0rd/rockbox
Now reports key release events
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1423 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
ccf74d4df7
commit
669edf680d
1 changed files with 5 additions and 0 deletions
|
@ -87,6 +87,11 @@ static void button_tick(void)
|
|||
else {
|
||||
repeat = false;
|
||||
count = 0;
|
||||
/* Report that the key has been released */
|
||||
if(lastbtn != btn)
|
||||
{
|
||||
queue_post(&button_queue, BUTTON_REL | lastbtn, NULL);
|
||||
}
|
||||
}
|
||||
|
||||
lastbtn = btn;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue