aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2019-08-20 12:19:38 -0700
committerChris Robinson <[email protected]>2019-08-20 12:19:38 -0700
commit3a6676b61e0ff4f7aa27482fa421f86150cc0c3b (patch)
tree4616b4200de9101e90e3b667f269ac33142a3902
parent80710c146a69823cef9827415c04f9f5491dc38c (diff)
Fix NEON store call
-rw-r--r--alc/mixer/mixer_neon.cpp2
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);
}
}