diff options
author | Chris Robinson <[email protected]> | 2014-03-19 17:55:09 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-03-19 17:55:09 -0700 |
commit | 0c5cbafcd84df288c7f41e0ef06c9e3109b03365 (patch) | |
tree | adb8387ce0b38a6ae21cd2dbc42d84ed6f554f28 /Alc/mixer_neon.c | |
parent | 213e3ba4afc933e0cf0a5beefa040cbe4ef208cd (diff) |
Use a union to combine HRTF and non-HRTF mixer params
Diffstat (limited to 'Alc/mixer_neon.c')
-rw-r--r-- | Alc/mixer_neon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/mixer_neon.c b/Alc/mixer_neon.c index dd7c1c80..674181df 100644 --- a/Alc/mixer_neon.c +++ b/Alc/mixer_neon.c @@ -90,7 +90,7 @@ void MixDirect_Neon(const DirectParams *params, const ALfloat *restrict data, AL for(c = 0;c < MaxChannels;c++) { - DrySend = params->Gains[srcchan][c]; + DrySend = params->Mix.Gains[srcchan][c]; if(!(DrySend > GAIN_SILENCE_THRESHOLD)) continue; |