diff options
author | jestercore <33821148+jestercore@users.noreply.github.com> | 2023-07-25 09:13:55 +0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-24 21:13:55 -0600 |
commit | 83bcfde106fc56b1af5aa73db7e8c5b9a8c99496 (patch) | |
tree | 226eb1e1f7283bce9e71042e90686615ec662fb4 /keyboards/feker/ik75/keymaps/bkzshen | |
parent | e126793d952c64b4d58381a3ce400947da56bfcb (diff) |
Fix ik75 scroll lock and windows lock status LEDs (#20380)
Diffstat (limited to 'keyboards/feker/ik75/keymaps/bkzshen')
-rw-r--r-- | keyboards/feker/ik75/keymaps/bkzshen/keymap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/feker/ik75/keymaps/bkzshen/keymap.c b/keyboards/feker/ik75/keymaps/bkzshen/keymap.c index f59617ddce..53d8145b7a 100644 --- a/keyboards/feker/ik75/keymaps/bkzshen/keymap.c +++ b/keyboards/feker/ik75/keymaps/bkzshen/keymap.c @@ -195,8 +195,8 @@ bool rgb_matrix_indicators_user(void) { rgb_matrix_set_color(104, 0, 0, 0); uint8_t red = host_keyboard_led_state().caps_lock ? 255 : 0; - uint8_t green = host_keyboard_led_state().scroll_lock ? 255 : 0; - uint8_t blue = keymap_config.no_gui ? 255 : 0; + uint8_t blue = host_keyboard_led_state().scroll_lock ? 255 : 0; + uint8_t green = keymap_config.no_gui ? 255 : 0; if ((rgb_matrix_get_flags() & LED_FLAG_KEYLIGHT)) { |