diff options
author | Chris Robinson <[email protected]> | 2012-04-30 09:33:00 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-04-30 09:33:00 -0700 |
commit | 010a66487d9b92f21d5b41c2d5956d8b79b58324 (patch) | |
tree | 3f4111c11cac98ce76e93d706328dddae0d8712d /OpenAL32/Include/alSource.h | |
parent | aed35fd811f7aa5f1a9d2edb499e43d490ede96e (diff) |
Use 2 chained one-pole filters for the wet path
Diffstat (limited to 'OpenAL32/Include/alSource.h')
-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; |