summaryrefslogtreecommitdiff
path: root/multiplexer.c
diff options
context:
space:
mode:
Diffstat (limited to 'multiplexer.c')
-rw-r--r--multiplexer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/multiplexer.c b/multiplexer.c
index 5f333e5..f224710 100644
--- a/multiplexer.c
+++ b/multiplexer.c
@@ -176,7 +176,7 @@ void *scroll_it(void *param)
break;
}
// wait until start_time + 50ms
- int wait = (start_time.tv_sec - stop_time.tv_sec) * 1000000 + (start_time.tv_nsec - stop_time.tv_nsec) / 1000 + 50000;
+ int wait = (start_time.tv_sec - stop_time.tv_sec) * 1000000 + (start_time.tv_nsec - stop_time.tv_nsec) / 1000 + 25000;
if (wait > 0)
usleep(wait);
display_data . should_buf = (display_data . should_buf + 1) % 3;