diff options
author | fauxpark <fauxpark@gmail.com> | 2019-10-16 10:02:09 +1100 |
---|---|---|
committer | Joel Challis <git@zvecr.com> | 2019-10-16 00:02:09 +0100 |
commit | 63f4806d7a67100fdf37b5f557ceb9d0982c0775 (patch) | |
tree | c942f96e391b32e91753516fe0b07af639fc5b97 /tmk_core/common/action.h | |
parent | 45225190794b438129d5b27d4fe5b756fdf2efc4 (diff) | |
download | qmk_firmware-63f4806d7a67100fdf37b5f557ceb9d0982c0775.tar.gz |
Fix bug in `do_code16()` (#6935)
* Fix bug in `do_code16()`
* Remove qk_ mods functions
Diffstat (limited to 'tmk_core/common/action.h')
-rw-r--r-- | tmk_core/common/action.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tmk_core/common/action.h b/tmk_core/common/action.h index 633cedb06..15f4ce15c 100644 --- a/tmk_core/common/action.h +++ b/tmk_core/common/action.h @@ -90,6 +90,8 @@ void unregister_code(uint8_t code); void tap_code(uint8_t code); void register_mods(uint8_t mods); void unregister_mods(uint8_t mods); +void register_weak_mods(uint8_t mods); +void unregister_weak_mods(uint8_t mods); // void set_mods(uint8_t mods); void clear_keyboard(void); void clear_keyboard_but_mods(void); |