From 57d9598ab3b9a7de1d0b12b503047b637488cf98 Mon Sep 17 00:00:00 2001 From: Paul Fd Date: Wed, 11 Mar 2020 15:06:14 +0100 Subject: [PATCH] Restore the initial sleep time in the emptyFileLoadingQueues() --- src/sfizz/FilePool.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sfizz/FilePool.cpp b/src/sfizz/FilePool.cpp index f240d3dd..cf80f33b 100644 --- a/src/sfizz/FilePool.cpp +++ b/src/sfizz/FilePool.cpp @@ -411,7 +411,7 @@ void sfz::FilePool::emptyFileLoadingQueues() noexcept { emptyQueue = true; while (emptyQueue) - std::this_thread::sleep_for(std::chrono::microseconds(100)); + std::this_thread::sleep_for(std::chrono::milliseconds(1)); } void sfz::FilePool::waitForBackgroundLoading() noexcept