aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/backends/base.cpp
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2018-11-22 12:53:16 -0800
committerChris Robinson <[email protected]>2018-11-22 12:53:16 -0800
commit84f0f74d0794b38d1b1bb0021090d50f2648e0ce (patch)
tree689e2deb49f478901eadccd935647770c5e306cd /Alc/backends/base.cpp
parentbb9d8db73c3536ccea5fbb928ae27810f7f63e0e (diff)
Use standard types for the device clock times
Diffstat (limited to 'Alc/backends/base.cpp')
-rw-r--r--Alc/backends/base.cpp2
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;
}