diff options
author | Pete Sevander <pete.sevander@gmail.com> | 2020-07-16 15:39:01 +0300 |
---|---|---|
committer | James Young <18669334+noroadsleft@users.noreply.github.com> | 2020-08-29 14:30:02 -0700 |
commit | b0335b273142ead24cb4177893fafdf2fda88810 (patch) | |
tree | b4f37b9f7aafe7525bda71a57d68e02cf1474946 /keyboards/xd75 | |
parent | 93e7a8f74cc2c9c7bc50b413654642a0347a55d2 (diff) |
Bigger combo index (#9318)
* Add change log
* Change combo index from uint8_t to uint16_t
Diffstat (limited to 'keyboards/xd75')
-rw-r--r-- | keyboards/xd75/keymaps/4sstylz/keymap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/xd75/keymaps/4sstylz/keymap.c b/keyboards/xd75/keymaps/4sstylz/keymap.c index d722da9c58..497ca40a98 100644 --- a/keyboards/xd75/keymaps/4sstylz/keymap.c +++ b/keyboards/xd75/keymaps/4sstylz/keymap.c @@ -129,7 +129,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { return true; } -void process_combo_event(uint8_t combo_index, bool pressed) { +void process_combo_event(uint16_t combo_index, bool pressed) { switch(combo_index) { case SCR_LCK: if (pressed) { |