aboutsummaryrefslogtreecommitdiff
path: root/users/xulkal/custom_oled.c
diff options
context:
space:
mode:
Diffstat (limited to 'users/xulkal/custom_oled.c')
-rw-r--r--users/xulkal/custom_oled.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/users/xulkal/custom_oled.c b/users/xulkal/custom_oled.c
index 4ed2b9a0b..7fe804092 100644
--- a/users/xulkal/custom_oled.c
+++ b/users/xulkal/custom_oled.c
@@ -176,7 +176,7 @@ static void render_status(void)
176 176
177#endif // OLED_90ROTATION 177#endif // OLED_90ROTATION
178 178
179void oled_task_user(void) 179bool oled_task_user(void)
180{ 180{
181 if (is_keyboard_master()) 181 if (is_keyboard_master())
182 render_status(); 182 render_status();
@@ -185,4 +185,5 @@ void oled_task_user(void)
185 render_logo(); 185 render_logo();
186 oled_scroll_left(); 186 oled_scroll_left();
187 } 187 }
188 return false;
188} 189}