diff options
Diffstat (limited to 'OpenAL32/Include/alSource.h')
-rw-r--r-- | OpenAL32/Include/alSource.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/OpenAL32/Include/alSource.h b/OpenAL32/Include/alSource.h index d8ffc9aa..bd1b2931 100644 --- a/OpenAL32/Include/alSource.h +++ b/OpenAL32/Include/alSource.h @@ -62,8 +62,7 @@ typedef struct DirectParams { ALfloat Gains[MaxChannels][MaxChannels]; /* A low-pass filter, using 2 chained one-pole filters. */ - FILTER iirFilter; - ALfloat history[MaxChannels*2]; + FILTER Filter[MaxChannels]; } DirectParams; typedef struct SendParams { @@ -74,8 +73,7 @@ typedef struct SendParams { ALfloat Gain; /* A low-pass filter, using 2 chained one-pole filters. */ - FILTER iirFilter; - ALfloat history[MaxChannels*2]; + FILTER Filter[MaxChannels]; } SendParams; |