aboutsummaryrefslogtreecommitdiff
path: root/quantum/visualizer/visualizer.c
diff options
context:
space:
mode:
Diffstat (limited to 'quantum/visualizer/visualizer.c')
-rw-r--r--quantum/visualizer/visualizer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/quantum/visualizer/visualizer.c b/quantum/visualizer/visualizer.c
index 5b4d8d603..516cf2a84 100644
--- a/quantum/visualizer/visualizer.c
+++ b/quantum/visualizer/visualizer.c
@@ -437,7 +437,7 @@ uint8_t visualizer_get_mods() {
437 if (!has_oneshot_mods_timed_out()) { 437 if (!has_oneshot_mods_timed_out()) {
438 mods |= get_oneshot_mods(); 438 mods |= get_oneshot_mods();
439 } 439 }
440#endif 440#endif
441 return mods; 441 return mods;
442} 442}
443 443
@@ -447,7 +447,7 @@ void visualizer_set_user_data(void* u) {
447} 447}
448#endif 448#endif
449 449
450void visualizer_update(uint32_t default_state, uint32_t state, uint8_t mods, uint32_t leds) { 450void visualizer_update(layer_state_t default_state, layer_state_t state, uint8_t mods, uint32_t leds) {
451 // Note that there's a small race condition here, the thread could read 451 // Note that there's a small race condition here, the thread could read
452 // a state where one of these are set but not the other. But this should 452 // a state where one of these are set but not the other. But this should
453 // not really matter as it will be fixed during the next loop step. 453 // not really matter as it will be fixed during the next loop step.