aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALc.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2015-07-04 10:12:57 -0700
committerChris Robinson <[email protected]>2015-07-04 10:12:57 -0700
commit4efe0d869651567aa26a17687d050a0834100f49 (patch)
treeb1b886b6ddfddc27d6086d26599cc9ff1943fc37 /Alc/ALc.c
parentd90dfc8d1f4f9ae374230cab837400a64503c2c1 (diff)
Update a couple comments
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r--Alc/ALc.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/Alc/ALc.c b/Alc/ALc.c
index c1c813d8..8531e1de 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -2083,10 +2083,7 @@ static ALCenum UpdateDeviceParams(ALCdevice *device, const ALCint *attrList)
aluInitPanning(device);
- /* With HRTF enabled, virtual channels are allocated for B-Format and
- * effects renfering. Two extra channels are allocated for the actual HRTF-
- * filtered output.
- */
+ /* With HRTF, allocate two extra channels for the post-filter output. */
size = sizeof(device->DryBuffer[0]) * (device->NumChannels + (device->Hrtf ? 2 : 0));
device->DryBuffer = al_calloc(16, size);
if(!device->DryBuffer)