diff options
Diffstat (limited to 'OpenAL32/Include/alMain.h')
-rw-r--r-- | OpenAL32/Include/alMain.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index 3643dd77..cf1cd6b2 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -700,15 +700,15 @@ struct ALCdevice_struct { // Map of Buffers for this device al::vector<BufferSubList> BufferList; - almtx_t BufferLock; + std::mutex BufferLock; // Map of Effects for this device al::vector<EffectSubList> EffectList; - almtx_t EffectLock; + std::mutex EffectLock; // Map of Filters for this device al::vector<FilterSubList> FilterList; - almtx_t FilterLock; + std::mutex FilterLock; POSTPROCESS PostProcess{}; |