diff options
author | Chris Robinson <[email protected]> | 2015-11-06 22:17:15 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2015-11-06 22:17:15 -0800 |
commit | ec7b21cd14f2ef64594cb66066d3217c4892f4eb (patch) | |
tree | 35553d8224f70aec671e00d28ee6a663309a47ba | |
parent | de74498cd97c18d0c6c4001079b95da0f404ce8f (diff) |
Remove a const to silence some warnings
-rw-r--r-- | Alc/ALu.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; \ |