Fix an inadvertent change in the HRTF coefficient stepping value array size

This commit is contained in:
Chris Robinson
2012-07-19 11:49:43 -07:00
parent 6bd535bed0
commit e32e2fd6b8
+1 -1
View File
@@ -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;