mirror of
https://github.com/qmk/qmk_firmware.git
synced 2024-11-22 03:19:24 +00:00
[Keyboard] Fix missing return for oled task on Arabica37 (#15011)
This commit is contained in:
parent
4bc1b12480
commit
8812e3724a
@ -177,7 +177,6 @@ bool oled_task_user(void) {
|
||||
oled_write_P(led_state.num_lock ? PSTR("NUM ") : PSTR(" "), false);
|
||||
oled_write_P(led_state.caps_lock ? PSTR("CAP ") : PSTR(" "), false);
|
||||
oled_write_P(led_state.scroll_lock ? PSTR("SCR ") : PSTR(" "), false);
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
@ -196,5 +195,6 @@ bool oled_task_user(void) {
|
||||
} else {
|
||||
render_logo(); // Renders a static logo
|
||||
}
|
||||
return false;
|
||||
}
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user