diff options
author | Drashna Jaelre <drashna@live.com> | 2021-05-27 21:30:47 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-27 21:30:47 -0700 |
commit | b96304930528c891f30686911884c8551db601fb (patch) | |
tree | 6a7d7504650483023bf68fd6e23c68ac8fc84749 /keyboards/mechwild/mercutio/keymaps | |
parent | 5386c4c7b293ae6473df3a81e40a072a42b085ad (diff) |
Fix keyboards/keymaps for boolean encoder callback changes (#12985)
Diffstat (limited to 'keyboards/mechwild/mercutio/keymaps')
-rwxr-xr-x | keyboards/mechwild/mercutio/keymaps/jonavin/keymap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/mechwild/mercutio/keymaps/jonavin/keymap.c b/keyboards/mechwild/mercutio/keymaps/jonavin/keymap.c index fbbe2660ca..f5dddcfac8 100755 --- a/keyboards/mechwild/mercutio/keymaps/jonavin/keymap.c +++ b/keyboards/mechwild/mercutio/keymaps/jonavin/keymap.c @@ -58,7 +58,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { #ifdef ENCODER_ENABLE // Encoder Functionality uint8_t selected_layer = 0; - void encoder_update_user(uint8_t index, bool clockwise) { + bool encoder_update_user(uint8_t index, bool clockwise) { #ifdef OLED_DRIVER_ENABLE oled_clear(); oled_render(); @@ -81,6 +81,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { } } } + return true; } #endif |