aboutsummaryrefslogtreecommitdiff
path: root/keyboards/tanuki/keymaps/default/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/tanuki/keymaps/default/keymap.c')
-rw-r--r--keyboards/tanuki/keymaps/default/keymap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/tanuki/keymaps/default/keymap.c b/keyboards/tanuki/keymaps/default/keymap.c
index 7c3e11f27..c10a868af 100644
--- a/keyboards/tanuki/keymaps/default/keymap.c
+++ b/keyboards/tanuki/keymaps/default/keymap.c
@@ -59,10 +59,10 @@ void keyboard_post_init_user(void) {
59 } 59 }
60} 60}
61 61
62uint32_t layer_state_set_user(uint32_t state) { 62layer_state_t layer_state_set_user(layer_state_t state) {
63 // This code switches underglow color by active layer, if the user has enabled the feature 63 // This code switches underglow color by active layer, if the user has enabled the feature
64 if(user_config.layer_rgb) { 64 if(user_config.layer_rgb) {
65 switch (biton32(state)) { 65 switch (get_highest_layer(state)) {
66 case _BL: 66 case _BL:
67 rgblight_sethsv_noeeprom(0,10,255); 67 rgblight_sethsv_noeeprom(0,10,255);
68 rgblight_mode_noeeprom(1); 68 rgblight_mode_noeeprom(1);