Fixup build failures. (#19332)

This commit is contained in:
Nick Brassel
2022-12-15 09:56:30 +11:00
committed by GitHub
parent 2ea290f5b9
commit 64715084b2
4 changed files with 4 additions and 4 deletions

View File

@@ -9,7 +9,7 @@ bool led_update_kb(led_t led_state) {
bool res = led_update_user(led_state);
if(res) {
writePin(B2, !led_state.caps_lock);
writePin(B6, led_state == 0);
writePin(B6, led_state.raw == 0);
}
return res;
}