aboutsummaryrefslogtreecommitdiff
path: root/keyboards/crkbd/keymaps/mcrown/oled.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/crkbd/keymaps/mcrown/oled.c')
-rw-r--r--keyboards/crkbd/keymaps/mcrown/oled.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/crkbd/keymaps/mcrown/oled.c b/keyboards/crkbd/keymaps/mcrown/oled.c
index b728a5806..9623b921a 100644
--- a/keyboards/crkbd/keymaps/mcrown/oled.c
+++ b/keyboards/crkbd/keymaps/mcrown/oled.c
@@ -308,7 +308,7 @@ static void render_logo(void){
308 * @param void. 308 * @param void.
309 * @return void. 309 * @return void.
310 */ 310 */
311void oled_task_user(void){ 311bool oled_task_user(void){
312 if (timer_elapsed32(standby_oled_timer) > 15000){ 312 if (timer_elapsed32(standby_oled_timer) > 15000){
313 oled_off(); 313 oled_off();
314 }else{ 314 }else{
@@ -321,6 +321,7 @@ void oled_task_user(void){
321 oled_scroll_left(); 321 oled_scroll_left();
322 } 322 }
323 } 323 }
324 return false;
324} 325}
325 326
326/** @brief process the current key and add it to the keylog string. 327/** @brief process the current key and add it to the keylog string.