mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-10 10:39:09 +00:00
Fix for issue https://github.com/qmk/qmk_firmware/issues/1751
This commit is contained in:
parent
750f8ec94e
commit
f4949fdd32
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ uint64_t key_state[4] = { 0x0, 0x0, 0x0, 0x0 };
|
||||||
bool watching = false;
|
bool watching = false;
|
||||||
|
|
||||||
// Translate any OSM keycodes back to their unmasked versions.
|
// Translate any OSM keycodes back to their unmasked versions.
|
||||||
uint16_t inline translate_keycode(uint16_t keycode) {
|
static inline uint16_t translate_keycode(uint16_t keycode) {
|
||||||
if (keycode > QK_ONE_SHOT_MOD && keycode <= QK_ONE_SHOT_MOD_MAX) {
|
if (keycode > QK_ONE_SHOT_MOD && keycode <= QK_ONE_SHOT_MOD_MAX) {
|
||||||
return keycode ^ QK_ONE_SHOT_MOD;
|
return keycode ^ QK_ONE_SHOT_MOD;
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue