diff options
Diffstat (limited to 'keyboards/sendyyeah/pix/keymaps/default/keymap.c')
-rw-r--r-- | keyboards/sendyyeah/pix/keymaps/default/keymap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/sendyyeah/pix/keymaps/default/keymap.c b/keyboards/sendyyeah/pix/keymaps/default/keymap.c index ee98aedd8..bcaf52d53 100644 --- a/keyboards/sendyyeah/pix/keymaps/default/keymap.c +++ b/keyboards/sendyyeah/pix/keymaps/default/keymap.c | |||
@@ -174,7 +174,7 @@ void draw_brightness_icon(int key_position, int row) { | |||
174 | oled_write_P(ICON_BRIGHTNESS_1, false); | 174 | oled_write_P(ICON_BRIGHTNESS_1, false); |
175 | } | 175 | } |
176 | 176 | ||
177 | void oled_task_user(void) { | 177 | bool oled_task_user(void) { |
178 | // Host Keyboard Layer Status | 178 | // Host Keyboard Layer Status |
179 | static const char PROGMEM ICON_LAYER[] = {0x80, 0x81, 0x82, 0x83, 0}; | 179 | static const char PROGMEM ICON_LAYER[] = {0x80, 0x81, 0x82, 0x83, 0}; |
180 | static const char PROGMEM ICON_ENCODER[] = {0x84, 0x85, 0x86, 0x87, 0}; | 180 | static const char PROGMEM ICON_ENCODER[] = {0x84, 0x85, 0x86, 0x87, 0}; |
@@ -229,6 +229,7 @@ void oled_task_user(void) { | |||
229 | break; | 229 | break; |
230 | } | 230 | } |
231 | 231 | ||
232 | return false; | ||
232 | } | 233 | } |
233 | 234 | ||
234 | #endif | 235 | #endif |