diff options
author | Chris Robinson <[email protected]> | 2018-03-23 14:52:59 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2018-03-23 14:52:59 -0700 |
commit | 6990478369e76a55aa27bebceb45db081fe8144e (patch) | |
tree | 0283f2b57eaea6d96b68dd0faad781c21c061145 /OpenAL32/Include | |
parent | e37634e908c7563e6281997d50800a2f9633d8d2 (diff) |
Rename ALfilterState/Type to BiquadState/Type
Diffstat (limited to 'OpenAL32/Include')
-rw-r--r-- | OpenAL32/Include/alu.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenAL32/Include/alu.h b/OpenAL32/Include/alu.h index 6113c256..cf1560fc 100644 --- a/OpenAL32/Include/alu.h +++ b/OpenAL32/Include/alu.h @@ -153,8 +153,8 @@ typedef struct MixHrtfParams { typedef struct DirectParams { - ALfilterState LowPass; - ALfilterState HighPass; + BiquadState LowPass; + BiquadState HighPass; NfcFilter NFCtrlFilter; @@ -171,8 +171,8 @@ typedef struct DirectParams { } DirectParams; typedef struct SendParams { - ALfilterState LowPass; - ALfilterState HighPass; + BiquadState LowPass; + BiquadState HighPass; struct { ALfloat Current[MAX_OUTPUT_CHANNELS]; |