mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-12 11:34:38 +00:00
Remove assignment warning
This commit is contained in:
parent
455568d197
commit
68e5c85999
1 changed files with 1 additions and 1 deletions
|
@ -1058,7 +1058,7 @@ void battery_poll(uint8_t level) {
|
||||||
void led_set_user(uint8_t usb_led) {
|
void led_set_user(uint8_t usb_led) {
|
||||||
bool new_capslock = usb_led & (1<<USB_LED_CAPS_LOCK);
|
bool new_capslock = usb_led & (1<<USB_LED_CAPS_LOCK);
|
||||||
if (new_capslock ^ capslock) { // capslock state is different
|
if (new_capslock ^ capslock) { // capslock state is different
|
||||||
if (capslock = new_capslock) {
|
if ((capslock = new_capslock)) {
|
||||||
rgbsps_set(LED_IND_NUM, 15, 0, 0);
|
rgbsps_set(LED_IND_NUM, 15, 0, 0);
|
||||||
} else {
|
} else {
|
||||||
rgbsps_set(LED_IND_NUM, 0, 0, 0);
|
rgbsps_set(LED_IND_NUM, 0, 0, 0);
|
||||||
|
|
Loading…
Reference in a new issue