diff options
author | Chris Robinson <[email protected]> | 2012-08-15 03:43:36 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-08-15 03:43:36 -0700 |
commit | 4d157d2849a6cda4fb05eea7ebed91793985b709 (patch) | |
tree | baa06a85fe0f4e7b859c21cde4d8dee7afbf6577 /Alc/mixer_inc.c | |
parent | 64cd763e190eeff0f0631babebc150893e5f3ecf (diff) |
Make sure the working coefficients are aligned for the SSE mixer
Diffstat (limited to 'Alc/mixer_inc.c')
-rw-r--r-- | Alc/mixer_inc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/mixer_inc.c b/Alc/mixer_inc.c index 21166b60..b7051f64 100644 --- a/Alc/mixer_inc.c +++ b/Alc/mixer_inc.c @@ -53,7 +53,7 @@ void MERGE4(MixDirect_Hrtf_,SAMPLER,_,SUFFIX)( ALfloat (*RESTRICT Values)[2] = Source->Hrtf.Values[i]; ALint Counter = maxu(Source->Hrtf.Counter, OutPos) - OutPos; ALuint Offset = Source->Hrtf.Offset + OutPos; - ALfloat Coeffs[HRIR_LENGTH][2]; + ALfloat Coeffs[HRIR_LENGTH][2] ALIGN(16); ALuint Delay[2]; ALfloat left, right; |