aboutsummaryrefslogtreecommitdiff
path: root/keyboards/mechwild/mercutio/keymaps/jonavin/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/mechwild/mercutio/keymaps/jonavin/keymap.c')
-rwxr-xr-xkeyboards/mechwild/mercutio/keymaps/jonavin/keymap.c3
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 fbbe2660c..f5dddcfac 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] = {
58 58
59#ifdef ENCODER_ENABLE // Encoder Functionality 59#ifdef ENCODER_ENABLE // Encoder Functionality
60 uint8_t selected_layer = 0; 60 uint8_t selected_layer = 0;
61 void encoder_update_user(uint8_t index, bool clockwise) { 61 bool encoder_update_user(uint8_t index, bool clockwise) {
62 #ifdef OLED_DRIVER_ENABLE 62 #ifdef OLED_DRIVER_ENABLE
63 oled_clear(); 63 oled_clear();
64 oled_render(); 64 oled_render();
@@ -81,6 +81,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
81 } 81 }
82 } 82 }
83 } 83 }
84 return true;
84 } 85 }
85#endif 86#endif
86 87