aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/alu.cpp
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2019-06-18 06:20:35 -0700
committerChris Robinson <[email protected]>2019-06-18 06:20:35 -0700
commit706df72d1813272e6cdfe817cf4c0adfefa13bd9 (patch)
tree64656959967a5515f93a3142443149afc7dc4721 /Alc/alu.cpp
parent2b19c53ecec0deff0536865f71f44bef3ff14094 (diff)
Rename HrtfParams to HrtfFilter
Diffstat (limited to 'Alc/alu.cpp')
-rw-r--r--Alc/alu.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/alu.cpp b/Alc/alu.cpp
index cc478a89..e5dcfd01 100644
--- a/Alc/alu.cpp
+++ b/Alc/alu.cpp
@@ -539,7 +539,7 @@ void CalcPanningAndFilters(ALvoice *voice, const ALfloat xpos, const ALfloat ypo
std::for_each(voice->mChans.begin(), voice->mChans.begin()+num_channels,
[NumSends](ALvoice::ChannelData &chandata) -> void
{
- chandata.mDryParams.Hrtf.Target = HrtfParams{};
+ chandata.mDryParams.Hrtf.Target = HrtfFilter{};
ClearArray(chandata.mDryParams.Gains.Target);
std::for_each(chandata.mWetParams.begin(), chandata.mWetParams.begin()+NumSends,
[](SendParams &params) -> void { ClearArray(params.Gains.Target); });