diff options
Diffstat (limited to 'alc/backends/base.cpp')
-rw-r--r-- | alc/backends/base.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/alc/backends/base.cpp b/alc/backends/base.cpp index 3a05cb2b..01cc5213 100644 --- a/alc/backends/base.cpp +++ b/alc/backends/base.cpp @@ -14,16 +14,6 @@ #include "atomic.h" -ClockLatency GetClockLatency(ALCdevice *device) -{ - BackendBase *backend{device->Backend.get()}; - ClockLatency ret{backend->getClockLatency()}; - ret.Latency += device->FixedLatency; - return ret; -} - - -/* BackendBase method implementations. */ bool BackendBase::reset() { throw al::backend_exception{ALC_INVALID_DEVICE, "Invalid BackendBase call"}; } |