Fix functions with empty params (#19647)
* Fix functions with empty params * Found a bunch more
This commit is contained in:
parent
0f77ae6a20
commit
cf935d97ae
170 changed files with 276 additions and 276 deletions
|
@ -168,7 +168,7 @@ static char* get_date(void) {
|
|||
return date_str;
|
||||
}
|
||||
|
||||
void draw_default() {
|
||||
void draw_default(void) {
|
||||
oled_write_P(PSTR("LAYER "), false);
|
||||
oled_write_char(get_highest_layer(layer_state) + 0x30, true);
|
||||
|
||||
|
@ -220,7 +220,7 @@ void draw_default() {
|
|||
draw_line_v(71, 0, 8);
|
||||
}
|
||||
|
||||
void draw_clock() {
|
||||
void draw_clock(void) {
|
||||
oled_set_cursor(0, 0);
|
||||
oled_write(get_date(), false);
|
||||
oled_set_cursor(0, 2);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue