diff options
author | Chris Robinson <[email protected]> | 2018-04-04 18:07:46 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2018-04-04 18:07:46 -0700 |
commit | 9c5307a48a58959a564be1999b119a87b7cdb8e0 (patch) | |
tree | 84842432f646d1ce059ba67293b4edd0fc0bd798 /OpenAL32/Include | |
parent | b1fe40586192dc15f92d0476c85e9f9daa2a31f0 (diff) |
Rename BiquadState to BiquadFilter
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 cf1560fc..b977613c 100644 --- a/OpenAL32/Include/alu.h +++ b/OpenAL32/Include/alu.h @@ -153,8 +153,8 @@ typedef struct MixHrtfParams { typedef struct DirectParams { - BiquadState LowPass; - BiquadState HighPass; + BiquadFilter LowPass; + BiquadFilter HighPass; NfcFilter NFCtrlFilter; @@ -171,8 +171,8 @@ typedef struct DirectParams { } DirectParams; typedef struct SendParams { - BiquadState LowPass; - BiquadState HighPass; + BiquadFilter LowPass; + BiquadFilter HighPass; struct { ALfloat Current[MAX_OUTPUT_CHANNELS]; |