Skip to content

Commit

Permalink
boardsource/unicorne - Fixed OLED layers being all set to zero (qmk#2…
Browse files Browse the repository at this point in the history
  • Loading branch information
ID64F authored and evantravers committed Nov 17, 2023
1 parent efe8134 commit dfd95fd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions keyboards/boardsource/unicorne/unicorne.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ bool oled_task_kb(void) {
oled_write_raw(layer_zero, sizeof(layer_zero));
break;
case 1:
oled_write_raw(layer_zero, sizeof(layer_zero));
oled_write_raw(layer_one, sizeof(layer_one));
break;
case 2:
oled_write_raw(layer_zero, sizeof(layer_zero));
oled_write_raw(layer_two, sizeof(layer_two));
break;
case 3:
oled_write_raw(layer_zero, sizeof(layer_zero));
oled_write_raw(layer_three, sizeof(layer_three));
break;
}
} else {
Expand Down

0 comments on commit dfd95fd

Please sign in to comment.