[Keyboard] Fix missing return for oled task on Arabica37 (#15011)

master
Drashna Jaelre 2021-11-01 19:30:23 -07:00 committed by GitHub
parent 4bc1b12480
commit 8812e3724a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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