diff options
Diffstat (limited to 'Alc/backends/winmm.cpp')
-rw-r--r-- | Alc/backends/winmm.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/backends/winmm.cpp b/Alc/backends/winmm.cpp index b4651b4c..2524ecc1 100644 --- a/Alc/backends/winmm.cpp +++ b/Alc/backends/winmm.cpp @@ -206,7 +206,7 @@ FORCE_ALIGN int ALCwinmmPlayback_mixerProc(ALCwinmmPlayback *self) ALCwinmmPlayback_lock(self); while(!self->mKillNow.load(std::memory_order_acquire) && - ATOMIC_LOAD(&device->Connected, almemory_order_acquire)) + device->Connected.load(std::memory_order_acquire)) { ALsizei todo = self->Writable.load(std::memory_order_acquire); if(todo < 1) @@ -487,7 +487,7 @@ int ALCwinmmCapture_captureProc(ALCwinmmCapture *self) ALCwinmmCapture_lock(self); while(!self->mKillNow.load(std::memory_order_acquire) && - ATOMIC_LOAD(&device->Connected, almemory_order_acquire)) + device->Connected.load(std::memory_order_acquire)) { ALsizei todo = self->Readable.load(std::memory_order_acquire); if(todo < 1) |