diff options
Diffstat (limited to 'Alc/backends/base.cpp')
-rw-r--r-- | Alc/backends/base.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/backends/base.cpp b/Alc/backends/base.cpp index f3a4c60e..1839d353 100644 --- a/Alc/backends/base.cpp +++ b/Alc/backends/base.cpp @@ -18,7 +18,7 @@ void ALCdevice_Unlock(ALCdevice *device) ClockLatency GetClockLatency(ALCdevice *device) { ClockLatency ret = V0(device->Backend,getClockLatency)(); - ret.Latency += device->FixedLatency; + ret.Latency += device->FixedLatency.count(); return ret; } |