mirror of
https://github.com/firewalkwithm3/qmk_firmware.git
synced 2024-11-22 11:30:30 +08:00
[Keymap][CRKBD/SOUNDMONSTER] Fixed compilation (forgot return) (#15554)
This commit is contained in:
parent
3f1f60cbf9
commit
021eda3790
|
@ -303,7 +303,7 @@ void suspend_power_down_user() {
|
||||||
bool oled_task_user(void) {
|
bool oled_task_user(void) {
|
||||||
if (timer_elapsed32(oled_timer) > 30000) {
|
if (timer_elapsed32(oled_timer) > 30000) {
|
||||||
oled_off();
|
oled_off();
|
||||||
return;
|
return false;
|
||||||
}
|
}
|
||||||
#ifndef SPLIT_KEYBOARD
|
#ifndef SPLIT_KEYBOARD
|
||||||
else { oled_on(); }
|
else { oled_on(); }
|
||||||
|
|
Loading…
Reference in a new issue