summaryrefslogtreecommitdiff
path: root/docs/feature_combo.md
diff options
context:
space:
mode:
authorJan-Frederick Musiol <j.musiol@tu-bs.de>2020-10-12 17:14:37 +0200
committerGitHub <noreply@github.com>2020-10-13 02:14:37 +1100
commit49abff90710a19e1b049ff335efc1073e4732c0d (patch)
tree11a06f44288953efde91868cf4e634456173f7e9 /docs/feature_combo.md
parent2d4ae0fe7b099344b3eca8e1e5506d177f915568 (diff)
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
Diffstat (limited to 'docs/feature_combo.md')
-rw-r--r--docs/feature_combo.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/feature_combo.md b/docs/feature_combo.md
index d3eb896b28..d831328f69 100644
--- a/docs/feature_combo.md
+++ b/docs/feature_combo.md
@@ -55,7 +55,7 @@ combo_t key_combos[COMBO_COUNT] = {
[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) {
case ZC_COPY:
if (pressed) {