aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALc.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2010-02-24 18:51:57 -0800
committerChris Robinson <[email protected]>2010-02-24 18:51:57 -0800
commita9e0e57797c6f4321d5776e1f29bf1e75b11e6a1 (patch)
tree71353f0190332bd69806103e039c2a4293c90a23 /Alc/ALc.c
parent9b47048231169ec1cdcea1f20638f6426d796e92 (diff)
Keep UpdateSize updated when apps request a frequency
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r--Alc/ALc.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/Alc/ALc.c b/Alc/ALc.c
index 1327c04f..40538a64 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -1257,6 +1257,9 @@ ALCAPI ALCcontext* ALCAPIENTRY alcCreateContext(ALCdevice *device, const ALCint
attrIdx += 2;
}
+ device->UpdateSize = (ALuint64)device->UpdateSize * freq /
+ device->Frequency;
+
device->Bs2bLevel = level;
device->Frequency = freq;
device->lNumMonoSources = numMono;