mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-04-03 17:17:10 +02:00
keydev: add Catalog+4th row combo for F1...F6 on Math+
This commit is contained in:
parent
58c8e5f8fe
commit
d04bb51f7a
1 changed files with 8 additions and 0 deletions
|
@ -263,6 +263,14 @@ key_event_t keydev_unqueue_event(keydev_t *d)
|
|||
if(!queue_poll(d, &ev))
|
||||
return ev;
|
||||
|
||||
/* Compatibility combinations can transform the .key attribute */
|
||||
#if GINT_HW_CG
|
||||
if(gint[HWCALC] == HWCALC_FXCG100) {
|
||||
if(keydev_keydown(d, KEY_CATALOG) && ev.row == 6)
|
||||
ev.key = KEY_F1 + (6 - ev.col);
|
||||
}
|
||||
#endif
|
||||
|
||||
/* Update the event state accordingly */
|
||||
int mask = 1 << ev.col;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue