GS/Vulkan: Fix incorrect memory order arg

This commit is contained in:
Stenzek 2024-02-05 01:58:33 +10:00 committed by Connor McLaughlin
parent 2e95e59f40
commit 2693544faa
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}