aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Alc/mixer_c.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/Alc/mixer_c.c b/Alc/mixer_c.c
index cd7499f0..dc7fe838 100644
--- a/Alc/mixer_c.c
+++ b/Alc/mixer_c.c
@@ -16,9 +16,8 @@ static inline ALfloat cubic32(const ALfloat *vals, ALuint frac)
{ return cubic(vals[-1], vals[0], vals[1], vals[2], frac); }
const ALfloat *Resample_copy32_C(const ALfloat *src, ALuint UNUSED(frac),
- ALuint increment, ALfloat *restrict dst, ALuint numsamples)
+ ALuint UNUSED(increment), ALfloat *restrict dst, ALuint numsamples)
{
- assert(increment==FRACTIONONE);
#if defined(HAVE_SSE) || defined(HAVE_NEON)
/* Avoid copying the source data if it's aligned like the destination. */
if((((intptr_t)src)&15) == (((intptr_t)dst)&15))