aboutsummaryrefslogtreecommitdiff
path: root/keyboards/splitkb/kyria/keymaps/shinze/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/splitkb/kyria/keymaps/shinze/keymap.c')
-rw-r--r--keyboards/splitkb/kyria/keymaps/shinze/keymap.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/splitkb/kyria/keymaps/shinze/keymap.c b/keyboards/splitkb/kyria/keymaps/shinze/keymap.c
index ad9ca4da1..348341052 100644
--- a/keyboards/splitkb/kyria/keymaps/shinze/keymap.c
+++ b/keyboards/splitkb/kyria/keymaps/shinze/keymap.c
@@ -216,12 +216,13 @@ static void render_status(void) {
216 oled_write_P(IS_LED_ON(led_usb_state, USB_LED_SCROLL_LOCK) ? PSTR("SCRLCK ") : PSTR(" "), false); 216 oled_write_P(IS_LED_ON(led_usb_state, USB_LED_SCROLL_LOCK) ? PSTR("SCRLCK ") : PSTR(" "), false);
217} 217}
218 218
219void oled_task_user(void) { 219bool oled_task_user(void) {
220 if (is_keyboard_master()) { 220 if (is_keyboard_master()) {
221 render_status(); // Renders the current keyboard state (layer, lock, caps, scroll, etc) 221 render_status(); // Renders the current keyboard state (layer, lock, caps, scroll, etc)
222 } else { 222 } else {
223 render_kyria_logo(); 223 render_kyria_logo();
224 } 224 }
225 return false;
225} 226}
226#endif 227#endif
227 228