From 1a326c758b7b1f4cd05ce9ef4e042dcd22d8ef5d Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Fri, 7 Nov 2014 16:00:07 -0800 Subject: Rename a couple parameters --- Alc/ALu.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Alc/ALu.c') diff --git a/Alc/ALu.c b/Alc/ALu.c index 4d056be7..4a5402e7 100644 --- a/Alc/ALu.c +++ b/Alc/ALu.c @@ -1088,14 +1088,14 @@ static inline ALubyte aluF2UB(ALfloat val) { return aluF2B(val)+128; } #define DECL_TEMPLATE(T, func) \ -static void Write_##T(const ALfloatBUFFERSIZE *DryBuffer, ALvoid *buffer, \ +static void Write_##T(const ALfloatBUFFERSIZE *InBuffer, ALvoid *OutBuffer, \ ALuint SamplesToDo, ALuint numchans) \ { \ ALuint i, j; \ for(j = 0;j < numchans;j++) \ { \ - const ALfloat *in = DryBuffer[j]; \ - T *restrict out = (T*)buffer + j; \ + const ALfloat *in = InBuffer[j]; \ + T *restrict out = (T*)OutBuffer + j; \ for(i = 0;i < SamplesToDo;i++) \ out[i*numchans] = func(in[i]); \ } \ -- cgit v1.2.3