aboutsummaryrefslogtreecommitdiff
path: root/keyboards/preonic/keymaps/cranium/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/preonic/keymaps/cranium/keymap.c')
-rw-r--r--keyboards/preonic/keymaps/cranium/keymap.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/preonic/keymaps/cranium/keymap.c b/keyboards/preonic/keymaps/cranium/keymap.c
index d640ff849..63897d1e6 100644
--- a/keyboards/preonic/keymaps/cranium/keymap.c
+++ b/keyboards/preonic/keymaps/cranium/keymap.c
@@ -150,7 +150,7 @@ uint16_t muse_counter = 0;
150uint8_t muse_offset = 70; 150uint8_t muse_offset = 70;
151uint16_t muse_tempo = 50; 151uint16_t muse_tempo = 50;
152 152
153void encoder_update_user(uint8_t index, bool clockwise) { 153bool encoder_update_user(uint8_t index, bool clockwise) {
154 if (muse_mode) { 154 if (muse_mode) {
155 if (IS_LAYER_ON(_RAISE)) { 155 if (IS_LAYER_ON(_RAISE)) {
156 if (clockwise) { 156 if (clockwise) {
@@ -172,6 +172,7 @@ void encoder_update_user(uint8_t index, bool clockwise) {
172 tap_code(KC_PGUP); 172 tap_code(KC_PGUP);
173 } 173 }
174 } 174 }
175 return true;
175} 176}
176 177
177void dip_update(uint8_t index, bool active) { 178void dip_update(uint8_t index, bool active) {