diff options
Diffstat (limited to 'keyboards/planck/keymaps/eshesh2/keymap.c')
-rw-r--r-- | keyboards/planck/keymaps/eshesh2/keymap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/planck/keymaps/eshesh2/keymap.c b/keyboards/planck/keymaps/eshesh2/keymap.c index 1872b42cd..59768e15a 100644 --- a/keyboards/planck/keymaps/eshesh2/keymap.c +++ b/keyboards/planck/keymaps/eshesh2/keymap.c | |||
@@ -187,7 +187,7 @@ uint16_t muse_counter = 0; | |||
187 | uint8_t muse_offset = 70; | 187 | uint8_t muse_offset = 70; |
188 | uint16_t muse_tempo = 50; | 188 | uint16_t muse_tempo = 50; |
189 | 189 | ||
190 | void encoder_update(bool clockwise) { | 190 | bool encoder_update(bool clockwise) { |
191 | if (muse_mode) { | 191 | if (muse_mode) { |
192 | if (IS_LAYER_ON(_RAISE)) { | 192 | if (IS_LAYER_ON(_RAISE)) { |
193 | if (clockwise) { | 193 | if (clockwise) { |
@@ -226,6 +226,7 @@ void encoder_update(bool clockwise) { | |||
226 | } | 226 | } |
227 | } | 227 | } |
228 | } | 228 | } |
229 | return true; | ||
229 | } | 230 | } |
230 | 231 | ||
231 | 232 | ||