diff options
author | Joel Challis <git@zvecr.com> | 2023-05-10 22:55:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-10 22:55:49 +0100 |
commit | 4ae45ca995b1f01b8e7ab3d115efe241c9adfee3 (patch) | |
tree | 3fbf845606e8c4fbb37fb5563e9d18ed0a46b3ca /keyboards/handwired | |
parent | 853c8d4617efcf779ddde92ee81dadc892b88142 (diff) |
Tidy up encoder_map directions (#20847)
Diffstat (limited to 'keyboards/handwired')
-rw-r--r-- | keyboards/handwired/phantagom/baragon/keymaps/default/keymap.c | 2 | ||||
-rw-r--r-- | keyboards/handwired/phantagom/baragon/keymaps/via/keymap.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/handwired/phantagom/baragon/keymaps/default/keymap.c b/keyboards/handwired/phantagom/baragon/keymaps/default/keymap.c index 96431bbedb..b44b7a0a38 100644 --- a/keyboards/handwired/phantagom/baragon/keymaps/default/keymap.c +++ b/keyboards/handwired/phantagom/baragon/keymaps/default/keymap.c @@ -18,7 +18,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { }; #if defined(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_VOLU, KC_VOLD) }, [1] = { ENCODER_CCW_CW(KC_MRWD, KC_MFFD) }, }; diff --git a/keyboards/handwired/phantagom/baragon/keymaps/via/keymap.c b/keyboards/handwired/phantagom/baragon/keymaps/via/keymap.c index ee6b9d5ec6..042ed7e34d 100644 --- a/keyboards/handwired/phantagom/baragon/keymaps/via/keymap.c +++ b/keyboards/handwired/phantagom/baragon/keymaps/via/keymap.c @@ -18,7 +18,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { }; #if defined(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_VOLD, KC_VOLU) }, [1] = { ENCODER_CCW_CW(KC_MRWD, KC_MFFD) }, }; |