diff options
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); |