diff options
author | Chris Robinson <[email protected]> | 2017-08-23 23:01:11 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2017-08-23 23:01:11 -0700 |
commit | 9ea32713b57fd95832172de5e8d8534339bb646b (patch) | |
tree | 13718ad9174b67f56cc6a904e2221a7955f8f10d /Alc/mixer_sse.c | |
parent | 3d76e1c5141b10e405c13cd3362cad35a422926b (diff) |
Constify some pointers
Diffstat (limited to 'Alc/mixer_sse.c')
-rw-r--r-- | Alc/mixer_sse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/mixer_sse.c b/Alc/mixer_sse.c index c2514c46..5273a088 100644 --- a/Alc/mixer_sse.c +++ b/Alc/mixer_sse.c @@ -16,7 +16,7 @@ const ALfloat *Resample_bsinc_SSE(const InterpState *state, const ALfloat *restr ALsizei frac, ALint increment, ALfloat *restrict dst, ALsizei dstlen) { - const ALfloat *filter = state->bsinc.filter; + const ALfloat *const filter = state->bsinc.filter; const __m128 sf4 = _mm_set1_ps(state->bsinc.sf); const ALsizei m = state->bsinc.m; const ALfloat *fil, *scd, *phd, *spd; |