Vulkan: fix waiting on semaphore.

This commit is contained in:
FernandoS27 2021-10-20 23:13:29 +02:00 committed by Fernando Sahmkow
parent 916b882ea8
commit bb3e95133d

View file

@ -70,7 +70,9 @@ public:
return;
}
// If none of the above is hit, fallback to a regular wait
semaphore.Wait(tick);
while (!semaphore.Wait(tick)) {
}
Refresh();
}
private: