mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 11:49:06 +00:00
Atomic Stores / Loads
This commit is contained in:
parent
5c646d334a
commit
ab124b96c4
2 changed files with 4 additions and 2 deletions
|
@ -47,7 +47,7 @@ void PulseAudio::SoundLoop()
|
|||
|
||||
if (PulseInit())
|
||||
{
|
||||
while (m_run_thread && m_pa_connected == 1 && m_pa_error >= 0)
|
||||
while (m_run_thread.load() && m_pa_connected == 1 && m_pa_error >= 0)
|
||||
m_pa_error = pa_mainloop_iterate(m_pa_ml, 1, NULL);
|
||||
|
||||
if(m_pa_error < 0)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue