mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-04-04 09:37:10 +02:00
keysc: fix keycodes mapping to multiple keys on Math+
This commit is contained in:
parent
918d96c081
commit
df140ff846
1 changed files with 8 additions and 0 deletions
|
@ -79,8 +79,16 @@ static void keycode_to_keymatrix(int keycode, int *row, int *col)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
*row = keycode >> 4;
|
*row = keycode >> 4;
|
||||||
*col = 7 - (keycode & 7);
|
*col = 7 - (keycode & 7);
|
||||||
|
|
||||||
|
if(gint[HWCALC] == HWCALC_FXCG100 &&
|
||||||
|
(*row > 4 || (*row == 1 && *col == 3))) {
|
||||||
|
// key that doesn't exist
|
||||||
|
*row = 0;
|
||||||
|
*col = 1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue