aboutsummaryrefslogtreecommitdiffstats
path: root/alc/mixer/mixer_neon.cpp
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2019-09-04 19:31:30 -0700
committerChris Robinson <[email protected]>2019-09-04 19:31:30 -0700
commite873165019e8ae9300be9066101554c18a29df83 (patch)
tree2989d306c2189204f36d8a0e6bcf9b89e4322adf /alc/mixer/mixer_neon.cpp
parent8940bbd034177182bb6fc1e3953e57674e488309 (diff)
Only ASSUME values where a variable is used
Diffstat (limited to 'alc/mixer/mixer_neon.cpp')
-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 d3e89aec..b8a15c62 100644
--- a/alc/mixer/mixer_neon.cpp
+++ b/alc/mixer/mixer_neon.cpp
@@ -128,7 +128,7 @@ const ALfloat *Resample_<BSincTag,NEONTag>(const InterpState *state, const ALflo
static inline void ApplyCoeffs(size_t /*Offset*/, float2 *RESTRICT Values, const ALsizei IrSize,
const HrirArray &Coeffs, const ALfloat left, const ALfloat right)
{
- ASSUME(IrSize >= 2);
+ ASSUME(IrSize >= 4);
float32x4_t leftright4;
{