diff options
author | Chris Robinson <[email protected]> | 2020-02-26 04:58:02 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2020-02-26 04:58:02 -0800 |
commit | eb49290dabd5ca317337663ff7e8b25a311b83a8 (patch) | |
tree | d5d9c6bb50bc6b5dc1804ee88ca497c8b50111ac /alc/backends/base.h | |
parent | 4555b74bd75614418032bd46836b0335229d48d4 (diff) |
Remove unnecessary locks now that the mixer doesn't require one
Diffstat (limited to 'alc/backends/base.h')
-rw-r--r-- | alc/backends/base.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/alc/backends/base.h b/alc/backends/base.h index 3942a673..6887a813 100644 --- a/alc/backends/base.h +++ b/alc/backends/base.h @@ -43,9 +43,6 @@ struct BackendBase { virtual ClockLatency getClockLatency(); - virtual void lock() { mMutex.lock(); } - virtual void unlock() { mMutex.unlock(); } - ALCdevice *mDevice; std::recursive_mutex mMutex; |