mirror of https://github.com/PCSX2/pcsx2.git
GS/Vulkan: Fix incorrect memory order arg
This commit is contained in:
parent
2e95e59f40
commit
2693544faa
|
@ -1312,7 +1312,7 @@ void GSDeviceVK::StopPresentThread()
|
|||
{
|
||||
std::unique_lock<std::mutex> lock(m_present_mutex);
|
||||
WaitForPresentComplete(lock);
|
||||
m_present_thread_done.store(true, std::memory_order_acquire);
|
||||
m_present_thread_done.store(true, std::memory_order_release);
|
||||
m_present_queued_cv.notify_one();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue