mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-04-04 09:37:10 +02:00
getkey: exclude other keys during a repetition
When a key is being held and repeated, ignore other key presses until it is released. Without this, new keys would take priority. This is the desired behavior because pressing other keys by accident, especially on the directional pad, is common. Besdeis this is the system's behavior.
This commit is contained in:
parent
1697998a9c
commit
705854da39
1 changed files with 1 additions and 0 deletions
|
@ -42,6 +42,7 @@ key_event_t getkey_opt(int opt, volatile int *timeout)
|
|||
/* Key press: handle modifiers or return an event */
|
||||
case KEYEV_DOWN:
|
||||
key = ev.key;
|
||||
if(rep_key && key != rep_key) break;
|
||||
|
||||
/* Handle backlight on fx9860g */
|
||||
#ifdef FX9860G
|
||||
|
|
Loading…
Add table
Reference in a new issue