aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/Include/alMain.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2018-11-26 22:06:53 -0800
committerChris Robinson <[email protected]>2018-11-26 22:06:53 -0800
commit2d45ec8dc360cbdf9f813db0b8286d8e11a432d9 (patch)
tree4a76d5bada32a13772e70e24ed89b30ce9af6811 /OpenAL32/Include/alMain.h
parent68eef6abb4f48262ec4d514fb3c77b8d4e9c0bf7 (diff)
Use a standard mutex for the remaining locks
Diffstat (limited to 'OpenAL32/Include/alMain.h')
-rw-r--r--OpenAL32/Include/alMain.h6
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{};