forked from mirrors/qmk_userspace
		
	[Keyboard] Fix missing return for oled task on Arabica37 (#15011)
This commit is contained in:
		
					parent
					
						
							
								4bc1b12480
							
						
					
				
			
			
				commit
				
					
						8812e3724a
					
				
			
		
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -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.num_lock ? PSTR("NUM ") : PSTR("    "), false);
 | 
				
			||||||
    oled_write_P(led_state.caps_lock ? PSTR("CAP ") : PSTR("    "), false);
 | 
					    oled_write_P(led_state.caps_lock ? PSTR("CAP ") : PSTR("    "), false);
 | 
				
			||||||
    oled_write_P(led_state.scroll_lock ? PSTR("SCR ") : 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 {
 | 
					    } else {
 | 
				
			||||||
        render_logo();  // Renders a static logo
 | 
					        render_logo();  // Renders a static logo
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					    return false;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue