diff options
author | Chris Robinson <[email protected]> | 2018-11-26 21:29:11 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2018-11-26 21:39:31 -0800 |
commit | d8b9230ee4770095b0848aa38752e19d0090dd6a (patch) | |
tree | 054b0dc480947501b07b8fe44e21f4728e7c5adf /OpenAL32/Include/alMain.h | |
parent | b108d0acfd062756da69074242e24ea7b2856b8a (diff) |
Use a standard mutex for the backend lock
Diffstat (limited to 'OpenAL32/Include/alMain.h')
-rw-r--r-- | OpenAL32/Include/alMain.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index d809406d..3643dd77 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -785,7 +785,7 @@ struct ALCdevice_struct { // Contexts created on this device std::atomic<ALCcontext*> ContextList{nullptr}; - almtx_t BackendLock; + std::mutex BackendLock; ALCbackend *Backend{nullptr}; std::atomic<ALCdevice*> next{nullptr}; |