aboutsummaryrefslogtreecommitdiff
path: root/keyboards/terrazzo/terrazzo_effects/dot.h
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/terrazzo/terrazzo_effects/dot.h')
-rw-r--r--keyboards/terrazzo/terrazzo_effects/dot.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/terrazzo/terrazzo_effects/dot.h b/keyboards/terrazzo/terrazzo_effects/dot.h
index e8eb8e0fc..07c4621c2 100644
--- a/keyboards/terrazzo/terrazzo_effects/dot.h
+++ b/keyboards/terrazzo/terrazzo_effects/dot.h
@@ -19,8 +19,8 @@ TERRAZZO_EFFECT(DOT)
19# ifdef TERRAZZO_EFFECT_IMPLS 19# ifdef TERRAZZO_EFFECT_IMPLS
20// Animation for debugging. Lights one pixel according to animation index 20// Animation for debugging. Lights one pixel according to animation index
21void DOT(uint8_t i, bool dir) { 21void DOT(uint8_t i, bool dir) {
22 led_matrix_set_index_value_all(0); 22 led_matrix_set_value_all(0);
23 led_matrix_set_index_value(i, 10); 23 led_matrix_set_value(i, 10);
24} 24}
25 25
26# endif 26# endif