1
0
Fork 0
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:
Linus Nielsen Feltzing 2002-07-23 22:23:06 +00:00
parent ccf74d4df7
commit 669edf680d

View file

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