diff options
author | Ryan <fauxpark@gmail.com> | 2020-10-31 00:29:19 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-30 13:29:19 +0000 |
commit | fb579aae49fac9326600d5719ee9cc07463857cc (patch) | |
tree | 04422d4ef08a5eac06c6738c4a17467513411137 /keyboards/handwired/hnah108/keymaps/default/keymap.c | |
parent | 67654e4a82fad91640371473e3e2da3a9bf7e68a (diff) |
Fix `implicit declaration of function 'get_host_led_state'` (#10803)
Diffstat (limited to 'keyboards/handwired/hnah108/keymaps/default/keymap.c')
-rw-r--r-- | keyboards/handwired/hnah108/keymaps/default/keymap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/handwired/hnah108/keymaps/default/keymap.c b/keyboards/handwired/hnah108/keymaps/default/keymap.c index 1a6d3bc086..682ca0812a 100644 --- a/keyboards/handwired/hnah108/keymaps/default/keymap.c +++ b/keyboards/handwired/hnah108/keymaps/default/keymap.c @@ -65,7 +65,7 @@ void encoder_update_user(uint8_t index, bool clockwise) { } void rgb_matrix_indicators_user(void) { - led_t led_state = get_host_led_state(); + led_t led_state = host_keyboard_led_state(); if (led_state.caps_lock) { rgb_matrix_set_color(30, 0x00, 0xFF, 0x00); |