diff options
author | Chris Robinson <[email protected]> | 2022-10-21 23:50:51 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2022-10-21 23:50:51 -0700 |
commit | 87c549aef72f7963620abf5114d15c881f14e9b0 (patch) | |
tree | b1b9a5399fdc65b0ea572eea017d316397757e83 /alc/panning.cpp | |
parent | 2ae2aa4ad5be4cc4f8836f4a5472c42b39a8be1d (diff) |
Rename some variables to be less ambiguous
Diffstat (limited to 'alc/panning.cpp')
-rw-r--r-- | alc/panning.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/alc/panning.cpp b/alc/panning.cpp index bed27dec..d61b6bf0 100644 --- a/alc/panning.cpp +++ b/alc/panning.cpp @@ -1066,10 +1066,10 @@ void aluInitRenderer(ALCdevice *device, int hrtf_id, al::optional<StereoEncoding device->mUhjEncoder = std::make_unique<UhjEncoderIIR>(); break; case UhjQualityType::FIR256: - device->mUhjEncoder = std::make_unique<UhjEncoder<UhjLengthLq>>(); + device->mUhjEncoder = std::make_unique<UhjEncoder<UhjLength256>>(); break; case UhjQualityType::FIR512: - device->mUhjEncoder = std::make_unique<UhjEncoder<UhjLengthHq>>(); + device->mUhjEncoder = std::make_unique<UhjEncoder<UhjLength512>>(); break; } assert(device->mUhjEncoder != nullptr); |