Restore the initial sleep time in the emptyFileLoadingQueues()
This commit is contained in:
parent
976385976c
commit
57d9598ab3
1 changed files with 1 additions and 1 deletions
|
|
@ -411,7 +411,7 @@ void sfz::FilePool::emptyFileLoadingQueues() noexcept
|
||||||
{
|
{
|
||||||
emptyQueue = true;
|
emptyQueue = true;
|
||||||
while (emptyQueue)
|
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
|
void sfz::FilePool::waitForBackgroundLoading() noexcept
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue