diff options
Diffstat (limited to 'keyboards/rgbkb/sol/keymaps/kageurufu/keymap.c')
-rw-r--r-- | keyboards/rgbkb/sol/keymaps/kageurufu/keymap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/rgbkb/sol/keymaps/kageurufu/keymap.c b/keyboards/rgbkb/sol/keymaps/kageurufu/keymap.c index b587ef2b3..1c8320ac6 100644 --- a/keyboards/rgbkb/sol/keymaps/kageurufu/keymap.c +++ b/keyboards/rgbkb/sol/keymaps/kageurufu/keymap.c | |||
@@ -79,7 +79,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
79 | }; | 79 | }; |
80 | 80 | ||
81 | #ifdef ENCODER_ENABLE | 81 | #ifdef ENCODER_ENABLE |
82 | void encoder_update_user(uint8_t index, bool clockwise) { | 82 | bool encoder_update_user(uint8_t index, bool clockwise) { |
83 | if (index == 0) { /* First encoder */ | 83 | if (index == 0) { /* First encoder */ |
84 | if (clockwise) { | 84 | if (clockwise) { |
85 | tap_code(KC_VOLU); | 85 | tap_code(KC_VOLU); |
@@ -93,5 +93,6 @@ void encoder_update_user(uint8_t index, bool clockwise) { | |||
93 | tap_code(KC_VOLD); | 93 | tap_code(KC_VOLD); |
94 | } | 94 | } |
95 | } | 95 | } |
96 | return true; | ||
96 | } | 97 | } |
97 | #endif | 98 | #endif |