Skip to content

Commit

Permalink
GS/Vulkan: Fix incorrect memory order arg
Browse files Browse the repository at this point in the history
  • Loading branch information
stenzek committed Feb 4, 2024
1 parent 2e95e59 commit 2693544
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pcsx2/GS/Renderers/Vulkan/GSDeviceVK.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}

Expand Down

0 comments on commit 2693544

Please sign in to comment.