[Keymap][CRKBD/SOUNDMONSTER] Fixed compilation (forgot return) (#15554)

master
ExtReMLapin 2021-12-22 18:08:18 +01:00 committed by GitHub
parent 3f1f60cbf9
commit 021eda3790
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -303,7 +303,7 @@ void suspend_power_down_user() {
bool oled_task_user(void) {
if (timer_elapsed32(oled_timer) > 30000) {
oled_off();
return;
return false;
}
#ifndef SPLIT_KEYBOARD
else { oled_on(); }