diff options
author | Joel Challis <git@zvecr.com> | 2023-07-03 01:19:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-03 01:19:52 +0100 |
commit | 583c68893155e37dfd0b35a58dc1044cb714a418 (patch) | |
tree | 05c5bae5acbc19186d9075ce66715f8bda48754e /keyboards/takashicompany/spreadwriter/keymaps | |
parent | d2fd9e1773a454719940b3e033b6890cd6ddd720 (diff) |
Fix encoder map declarations (#21435)
Diffstat (limited to 'keyboards/takashicompany/spreadwriter/keymaps')
-rw-r--r-- | keyboards/takashicompany/spreadwriter/keymaps/via/keymap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/takashicompany/spreadwriter/keymaps/via/keymap.c b/keyboards/takashicompany/spreadwriter/keymaps/via/keymap.c index e5372cd1cd..cf031394f1 100644 --- a/keyboards/takashicompany/spreadwriter/keymaps/via/keymap.c +++ b/keyboards/takashicompany/spreadwriter/keymaps/via/keymap.c @@ -79,7 +79,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { } #ifdef ENCODER_MAP_ENABLE -const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][2] = { +const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][NUM_DIRECTIONS] = { [0] = { ENCODER_CCW_CW(KC_WH_U, KC_WH_D) }, [1 ... 6] = { ENCODER_CCW_CW(_______, _______) }, }; |