diff options
author | Chris Robinson <[email protected]> | 2019-08-20 12:19:38 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-08-20 12:19:38 -0700 |
commit | 3a6676b61e0ff4f7aa27482fa421f86150cc0c3b (patch) | |
tree | 4616b4200de9101e90e3b667f269ac33142a3902 | |
parent | 80710c146a69823cef9827415c04f9f5491dc38c (diff) |
Fix NEON store call
-rw-r--r-- | alc/mixer/mixer_neon.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alc/mixer/mixer_neon.cpp b/alc/mixer/mixer_neon.cpp index 10965234..7b9f7d4e 100644 --- a/alc/mixer/mixer_neon.cpp +++ b/alc/mixer/mixer_neon.cpp @@ -154,7 +154,7 @@ static inline void ApplyCoeffs(size_t /*Offset*/, float2 *RESTRICT Values, const vals = vmlaq_f32(vals, coefs, leftright4); - vst1_f32((float32_t*)&Values[c][0], vals); + vst1q_f32((float32_t*)&Values[c][0], vals); } } |