diff options
author | Chris Robinson <[email protected]> | 2012-10-15 01:31:58 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-10-15 01:31:58 -0700 |
commit | a14383d6ccd3f5e373ed3576c8fd2adce27a4597 (patch) | |
tree | ab6df3a28dd0743f8d06565a41da5d45b4fd56d4 /Alc/mixer_neon.c | |
parent | fe1903fb56e918cbbcbf66966c75581788fd9d5b (diff) |
Constify the direct and send parameters given to the mixer
Diffstat (limited to 'Alc/mixer_neon.c')
-rw-r--r-- | Alc/mixer_neon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/mixer_neon.c b/Alc/mixer_neon.c index 0dedb885..23dc792c 100644 --- a/Alc/mixer_neon.c +++ b/Alc/mixer_neon.c @@ -13,7 +13,7 @@ static __inline void ApplyCoeffsStep(ALuint Offset, ALfloat (*RESTRICT Values)[2], const ALuint IrSize, ALfloat (*RESTRICT Coeffs)[2], - ALfloat (*RESTRICT CoeffStep)[2], + const ALfloat (*RESTRICT CoeffStep)[2], ALfloat left, ALfloat right) { ALuint c; |