Browse Source

Vulkan: fix waiting on semaphore.

pull/15/merge
FernandoS27 4 years ago
committed by Fernando Sahmkow
parent
commit
bb3e95133d
  1. 4
      src/video_core/renderer_vulkan/vk_master_semaphore.h

4
src/video_core/renderer_vulkan/vk_master_semaphore.h

@ -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:

Loading…
Cancel
Save