diff --git a/lib/timing.cpp b/lib/timing.cpp index b75ee6a1..582e4f01 100644 --- a/lib/timing.cpp +++ b/lib/timing.cpp @@ -26,8 +26,8 @@ void Util::sleep(int ms){ if (ms < 0){ return; } - if (ms > 10000){ - return; + if (ms > 100000){ + ms = 100000; } struct timespec T; T.tv_sec = ms / 1000;