aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/null.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2010-07-25 12:54:50 -0700
committerChris Robinson <[email protected]>2010-07-25 12:54:50 -0700
commit46d46c49a87b33ed727a7099aca3dc89e06e57cd (patch)
treefb5e8d5611de607f6ddb707e1406d71e0bbe251d /Alc/null.c
parent40dd1fb85364e3a9e278ffa7a034638e7718770b (diff)
Store the time precision with the device
Diffstat (limited to 'Alc/null.c')
-rw-r--r--Alc/null.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/Alc/null.c b/Alc/null.c
index be760e7d..43a10624 100644
--- a/Alc/null.c
+++ b/Alc/null.c
@@ -108,6 +108,9 @@ static ALCboolean null_reset_playback(ALCdevice *device)
}
SetDefaultWFXChannelOrder(device);
+ device->TimeRes = (ALuint64)device->UpdateSize * 1000000000 /
+ device->Frequency;
+
data->thread = StartThread(NullProc, device);
if(data->thread == NULL)
{