diff options
author | Chris Robinson <[email protected]> | 2012-07-19 11:49:43 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-07-19 11:49:43 -0700 |
commit | e32e2fd6b84c24ea465da92fee79482914632eda (patch) | |
tree | 9ead9e4c5ed1c6668cb8cfa5996fa67a4815ee66 /OpenAL32/Include/alSource.h | |
parent | 6bd535bed0101bbe91c4a1a7dc4f93167e40810c (diff) |
Fix an inadvertent change in the HRTF coefficient stepping value array size
Diffstat (limited to 'OpenAL32/Include/alSource.h')
-rw-r--r-- | OpenAL32/Include/alSource.h | 2 |
1 files changed, 1 insertions, 1 deletions
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; |