Fix bad performance with TimerFileWatcher

This commit is contained in:
2022-11-08 14:53:51 -08:00
parent 67cb808401
commit 98dc75e02f
4 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ static void timer_clock_thread_callback(TimerClock *self) {
self->lastTick = now;
self->currentTime = 0;
}
g_usleep(50);
g_usleep(500);
}
}