diff options
author | Nick Brassel <nick@tzarc.org> | 2022-12-15 09:56:30 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-15 09:56:30 +1100 |
commit | 64715084b2698814fcdaeb578aed3a0d06f277d5 (patch) | |
tree | bd76b8c0b59542a9c57923e187612147b54d3cb8 /keyboards/exclusive | |
parent | 2ea290f5b9d7435eb648646c9fa8c98b3fcbba56 (diff) |
Fixup build failures. (#19332)
Diffstat (limited to 'keyboards/exclusive')
-rw-r--r-- | keyboards/exclusive/e6v2/oe/oe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/exclusive/e6v2/oe/oe.c b/keyboards/exclusive/e6v2/oe/oe.c index 2570bc101a..abff40c0b2 100644 --- a/keyboards/exclusive/e6v2/oe/oe.c +++ b/keyboards/exclusive/e6v2/oe/oe.c @@ -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; } |