summaryrefslogtreecommitdiffstats
path: root/keyboards/tzarc/djinn/djinn.c
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2022-10-01 14:22:06 +0000
committerQMK Bot <hello@qmk.fm>2022-10-01 14:22:06 +0000
commit2c5ceccc5a13cbf2d98708e50962336334033b5e (patch)
treec4e42e8a267ac1b547020afbbc22220bd8049df7 /keyboards/tzarc/djinn/djinn.c
parente78fa1fbf00fed10399b70c212f00668d7745b17 (diff)
parent059a7fb9b033fe1adb8a797e0f3dbc074499020c (diff)
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'keyboards/tzarc/djinn/djinn.c')
-rw-r--r--keyboards/tzarc/djinn/djinn.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/tzarc/djinn/djinn.c b/keyboards/tzarc/djinn/djinn.c
index e6529e555d..93b1ee775e 100644
--- a/keyboards/tzarc/djinn/djinn.c
+++ b/keyboards/tzarc/djinn/djinn.c
@@ -129,7 +129,7 @@ RGB rgb_matrix_hsv_to_rgb(HSV hsv) {
//----------------------------------------------------------
// UI Placeholder, implemented in themes
-__attribute__((weak)) void draw_ui_user(void) {}
+__attribute__((weak)) void draw_ui_user(bool force_redraw) {}
//----------------------------------------------------------
// Housekeeping
@@ -223,7 +223,7 @@ void housekeeping_task_kb(void) {
// Draw the UI
if (kb_state.lcd_power) {
- draw_ui_user();
+ draw_ui_user(false);
}
// Go into low-scan interrupt-based mode if we haven't had any matrix activity in the last 250 milliseconds