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/alSource.cpp | |
parent | b108d0acfd062756da69074242e24ea7b2856b8a (diff) |
Use a standard mutex for the backend lock
Diffstat (limited to 'OpenAL32/alSource.cpp')
-rw-r--r-- | OpenAL32/alSource.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenAL32/alSource.cpp b/OpenAL32/alSource.cpp index 37805376..0515074c 100644 --- a/OpenAL32/alSource.cpp +++ b/OpenAL32/alSource.cpp @@ -1724,7 +1724,7 @@ ALboolean GetSourcedv(ALsource *Source, ALCcontext *Context, SourceProp prop, AL * clock time with the device latency. Order is important. */ values[0] = GetSourceSecOffset(Source, Context, &srcclock); - { std::lock_guard<almtx_t> _{device->BackendLock}; + { std::lock_guard<std::mutex> _{device->BackendLock}; clocktime = GetClockLatency(device); } if(srcclock == clocktime.ClockTime) @@ -1987,7 +1987,7 @@ ALboolean GetSourcei64v(ALsource *Source, ALCcontext *Context, SourceProp prop, * clock time with the device latency. Order is important. */ values[0] = GetSourceSampleOffset(Source, Context, &srcclock); - { std::lock_guard<almtx_t> _{device->BackendLock}; + { std::lock_guard<std::mutex> _{device->BackendLock}; clocktime = GetClockLatency(device); } if(srcclock == clocktime.ClockTime) |