Browse Source

[Keyboard] Fix sendyyeah/pix oled task function type (#15608)

pull/16311/head
Drashna Jaelre 2 years ago
committed by GitHub
parent
commit
787f15b58f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      keyboards/sendyyeah/pix/keymaps/default/keymap.c
  2. +1
    -1
      keyboards/sendyyeah/pix/keymaps/via/keymap.c

+ 1
- 1
keyboards/sendyyeah/pix/keymaps/default/keymap.c View File

@ -215,7 +215,7 @@ void draw_sat_icon(int key_position, int row) {
oled_write_P(ICON_SAT_1, false);
}
void oled_task_user(void) {
bool oled_task_user(void) {
// Host Keyboard Layer Status
static const char PROGMEM ICON_LAYER[] = {0x80, 0x81, 0x82, 0x83, 0};
static const char PROGMEM ICON_ENCODER[] = {0x84, 0x85, 0x86, 0x87, 0};


+ 1
- 1
keyboards/sendyyeah/pix/keymaps/via/keymap.c View File

@ -215,7 +215,7 @@ void draw_sat_icon(int key_position, int row) {
oled_write_P(ICON_SAT_1, false);
}
void oled_task_user(void) {
bool oled_task_user(void) {
// Host Keyboard Layer Status
static const char PROGMEM ICON_LAYER[] = {0x80, 0x81, 0x82, 0x83, 0};
static const char PROGMEM ICON_ENCODER[] = {0x84, 0x85, 0x86, 0x87, 0};


Loading…
Cancel
Save