1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-03-29 16:06:44 +00:00

Notify workers when only at least one job is posted

This commit is contained in:
elsid 2019-03-08 15:27:16 +03:00
parent b9b8ed177c
commit 82e2739bae
No known key found for this signature in database
GPG key ID: B845CB9FEE18AB40

View file

@ -87,7 +87,8 @@ namespace DetourNavigator
log("posted ", mJobs.size(), " jobs"); log("posted ", mJobs.size(), " jobs");
mHasJob.notify_all(); if (!mJobs.empty())
mHasJob.notify_all();
} }
void AsyncNavMeshUpdater::wait() void AsyncNavMeshUpdater::wait()