From e32e2fd6b84c24ea465da92fee79482914632eda Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Thu, 19 Jul 2012 11:49:43 -0700 Subject: [PATCH] Fix an inadvertent change in the HRTF coefficient stepping value array size --- OpenAL32/Include/alSource.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenAL32/Include/alSource.h b/OpenAL32/Include/alSource.h index 6a85567e..0fe88e74 100644 --- a/OpenAL32/Include/alSource.h +++ b/OpenAL32/Include/alSource.h @@ -41,7 +41,7 @@ typedef struct HrtfParams { ALfloat Dir[3]; ALfloat Coeffs[MaxChannels][HRIR_LENGTH][2]; ALuint Delay[MaxChannels][2]; - ALfloat CoeffStep[MaxChannels][2]; + ALfloat CoeffStep[HRIR_LENGTH][2]; ALint DelayStep[2]; } HrtfParams; -- 2.11.4.GIT