summaryrefslogtreecommitdiff
path: root/keyboards/terrazzo/terrazzo_effects/dot.h
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2021-04-13 19:51:31 +1000
committerGitHub <noreply@github.com>2021-04-13 19:51:31 +1000
commita28fbcda2306634c74e196ce98f8bebb701445b0 (patch)
tree31e24d9b9e9c35de22724be01cf0be11b319fb2a /keyboards/terrazzo/terrazzo_effects/dot.h
parentce99f98bb5217ede628cfbf7e20924346b4279da (diff)
Terrazzo: Fix wrong LED Matrix function names (#12561)
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 e8eb8e0fce..07c4621c26 100644
--- a/keyboards/terrazzo/terrazzo_effects/dot.h
+++ b/keyboards/terrazzo/terrazzo_effects/dot.h
@@ -19,8 +19,8 @@ TERRAZZO_EFFECT(DOT)
# ifdef TERRAZZO_EFFECT_IMPLS
// Animation for debugging. Lights one pixel according to animation index
void DOT(uint8_t i, bool dir) {
- led_matrix_set_index_value_all(0);
- led_matrix_set_index_value(i, 10);
+ led_matrix_set_value_all(0);
+ led_matrix_set_value(i, 10);
}
# endif