diff options
author | Chris Robinson <[email protected]> | 2011-07-17 07:16:10 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-07-17 07:16:10 -0700 |
commit | 87b3520d028ee51a626e6b9cdc96affab0150794 (patch) | |
tree | 9752ef605906417b8d063bf42df8d5335be716e5 /Alc/hrtf.c | |
parent | 887de0523f2f8e8b3005c2a2957becf2a7c4be56 (diff) |
Fix GetMovingHrtfCoeffs return type
Diffstat (limited to 'Alc/hrtf.c')
-rw-r--r-- | Alc/hrtf.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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]; |