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 3f182e74d..9e9cb6d41 100644
--- a/quantum/visualizer/visualizer.c
+++ b/quantum/visualizer/visualizer.c
@@ -352,7 +352,7 @@ static DECLARE_THREAD_FUNCTION(visualizerThread, arg) {
352 352
353 // On windows the system ticks is the same as milliseconds anyway 353 // On windows the system ticks is the same as milliseconds anyway
354 if (sleep_time != TIME_INFINITE) { 354 if (sleep_time != TIME_INFINITE) {
355 sleep_time = ST2MS(sleep_time); 355 sleep_time = TIME_I2MS(sleep_time);
356 } 356 }
357#endif 357#endif
358 geventEventWait(&event_listener, sleep_time); 358 geventEventWait(&event_listener, sleep_time);
@@ -400,7 +400,7 @@ void update_status(bool changed) {
400 static systime_t last_update = 0; 400 static systime_t last_update = 0;
401 systime_t current_update = chVTGetSystemTimeX(); 401 systime_t current_update = chVTGetSystemTimeX();
402 systime_t delta = current_update - last_update; 402 systime_t delta = current_update - last_update;
403 if (changed || delta > MS2ST(10)) { 403 if (changed || delta > TIME_MS2I(10)) {
404 last_update = current_update; 404 last_update = current_update;
405 visualizer_keyboard_status_t* r = begin_write_current_status(); 405 visualizer_keyboard_status_t* r = begin_write_current_status();
406 *r = current_status; 406 *r = current_status;