mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-10 10:39:09 +00:00
changed type of process_combo_event argument in tutorial (#10621)
in tutorial for combos feature, changed type of compo_index argument of process_combo_event form uint8_t to uint16_t
This commit is contained in:
parent
2d4ae0fe7b
commit
49abff9071
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ combo_t key_combos[COMBO_COUNT] = {
|
||||||
[XV_PASTE] = COMBO_ACTION(paste_combo),
|
[XV_PASTE] = COMBO_ACTION(paste_combo),
|
||||||
};
|
};
|
||||||
|
|
||||||
void process_combo_event(uint8_t combo_index, bool pressed) {
|
void process_combo_event(uint16_t combo_index, bool pressed) {
|
||||||
switch(combo_index) {
|
switch(combo_index) {
|
||||||
case ZC_COPY:
|
case ZC_COPY:
|
||||||
if (pressed) {
|
if (pressed) {
|
||||||
|
|
Loading…
Reference in a new issue