From 3a6676b61e0ff4f7aa27482fa421f86150cc0c3b Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Tue, 20 Aug 2019 12:19:38 -0700 Subject: Fix NEON store call --- alc/mixer/mixer_neon.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'alc') 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); } } -- cgit v1.2.3