aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2013-10-06 09:23:53 -0700
committerChris Robinson <[email protected]>2013-10-06 09:33:02 -0700
commit8448b94c0bf3f0ddbd040b25a68ff0ca2dcc37bd (patch)
tree0486774d9f9803f17d374fa43e97b008002598cd /OpenAL32
parent9ee3d01f6ed5748ef88a4b5992cd6be48afaf3b8 (diff)
Rename Filter param member to LpFilter
Diffstat (limited to 'OpenAL32')
-rw-r--r--OpenAL32/Include/alSource.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenAL32/Include/alSource.h b/OpenAL32/Include/alSource.h
index e049d987..03da250f 100644
--- a/OpenAL32/Include/alSource.h
+++ b/OpenAL32/Include/alSource.h
@@ -62,7 +62,7 @@ typedef struct DirectParams {
* target (eg. FrontLeft). Not used with HRTF. */
ALfloat Gains[MAX_INPUT_CHANNELS][MaxChannels];
- ALfilterState Filter[MAX_INPUT_CHANNELS];
+ ALfilterState LpFilter[MAX_INPUT_CHANNELS];
} DirectParams;
typedef struct SendParams {
@@ -72,7 +72,7 @@ typedef struct SendParams {
* output buffer. */
ALfloat Gain;
- ALfilterState Filter[MAX_INPUT_CHANNELS];
+ ALfilterState LpFilter[MAX_INPUT_CHANNELS];
} SendParams;