aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2015-11-06 22:17:15 -0800
committerChris Robinson <[email protected]>2015-11-06 22:17:15 -0800
commitec7b21cd14f2ef64594cb66066d3217c4892f4eb (patch)
tree35553d8224f70aec671e00d28ee6a663309a47ba
parentde74498cd97c18d0c6c4001079b95da0f404ce8f (diff)
Remove a const to silence some warnings
-rw-r--r--Alc/ALu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/ALu.c b/Alc/ALu.c
index 721ac1d8..cc609562 100644
--- a/Alc/ALu.c
+++ b/Alc/ALu.c
@@ -1323,7 +1323,7 @@ static inline ALubyte aluF2UB(ALfloat val)
{ return aluF2B(val)+128; }
#define DECL_TEMPLATE(T, func) \
-static void Write_##T(const ALfloatBUFFERSIZE *InBuffer, ALvoid *OutBuffer, \
+static void Write_##T(ALfloatBUFFERSIZE *InBuffer, ALvoid *OutBuffer, \
ALuint SamplesToDo, ALuint numchans) \
{ \
ALuint i, j; \