aboutsummaryrefslogtreecommitdiffstats
path: root/alc/backends/base.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2020-02-26 04:58:02 -0800
committerChris Robinson <[email protected]>2020-02-26 04:58:02 -0800
commiteb49290dabd5ca317337663ff7e8b25a311b83a8 (patch)
treed5d9c6bb50bc6b5dc1804ee88ca497c8b50111ac /alc/backends/base.h
parent4555b74bd75614418032bd46836b0335229d48d4 (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.h3
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;