diff options
Diffstat (limited to 'OpenAL32')
-rw-r--r-- | OpenAL32/Include/alSource.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenAL32/Include/alSource.h b/OpenAL32/Include/alSource.h index 88ced697..f76f618d 100644 --- a/OpenAL32/Include/alSource.h +++ b/OpenAL32/Include/alSource.h @@ -63,9 +63,9 @@ typedef struct SendParams { * output buffer. */ ALfloat Gain; - /* A low-pass filter, using a one-pole filter. */ + /* A low-pass filter, using 2 chained one-pole filters. */ FILTER iirFilter; - ALfloat history[MAXCHANNELS]; + ALfloat history[MAXCHANNELS*2]; } SendParams; |