aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/mixer_c.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2014-03-19 17:55:09 -0700
committerChris Robinson <[email protected]>2014-03-19 17:55:09 -0700
commit0c5cbafcd84df288c7f41e0ef06c9e3109b03365 (patch)
treeadb8387ce0b38a6ae21cd2dbc42d84ed6f554f28 /Alc/mixer_c.c
parent213e3ba4afc933e0cf0a5beefa040cbe4ef208cd (diff)
Use a union to combine HRTF and non-HRTF mixer params
Diffstat (limited to 'Alc/mixer_c.c')
-rw-r--r--Alc/mixer_c.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/mixer_c.c b/Alc/mixer_c.c
index 34309b12..393096db 100644
--- a/Alc/mixer_c.c
+++ b/Alc/mixer_c.c
@@ -94,7 +94,7 @@ void MixDirect_C(const DirectParams *params, const ALfloat *restrict data, ALuin
for(c = 0;c < MaxChannels;c++)
{
- DrySend = params->Gains[srcchan][c];
+ DrySend = params->Mix.Gains[srcchan][c];
if(!(DrySend > GAIN_SILENCE_THRESHOLD))
continue;