From 87b3520d028ee51a626e6b9cdc96affab0150794 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Sun, 17 Jul 2011 07:16:10 -0700 Subject: Fix GetMovingHrtfCoeffs return type --- Alc/hrtf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Alc/hrtf.c') diff --git a/Alc/hrtf.c b/Alc/hrtf.c index 6edc37e7..33d02869 100644 --- a/Alc/hrtf.c +++ b/Alc/hrtf.c @@ -187,7 +187,7 @@ void GetLerpedHrtfCoeffs(ALfloat elevation, ALfloat azimuth, ALfloat gain, ALflo // HRIR dataset. The coefficients are also normalized and attenuated by the // specified gain. Stepping resolution and count is determined using the // given delta factor between 0.0 and 1.0. -ALint GetMovingHrtfCoeffs(ALfloat elevation, ALfloat azimuth, ALfloat gain, ALfloat delta, ALint counter, ALfloat (*coeffs)[2], ALuint *delays, ALfloat (*coeffStep)[2], ALint *delayStep) +ALuint GetMovingHrtfCoeffs(ALfloat elevation, ALfloat azimuth, ALfloat gain, ALfloat delta, ALint counter, ALfloat (*coeffs)[2], ALuint *delays, ALfloat (*coeffStep)[2], ALint *delayStep) { ALfloat step; ALuint evidx[2], azidx[2]; -- cgit v1.2.3