mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 10:30:00 +00:00
Vulkan: fix waiting on semaphore.
This commit is contained in:
parent
916b882ea8
commit
bb3e95133d
1 changed files with 3 additions and 1 deletions
|
@ -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…
Reference in a new issue