diff options
Diffstat (limited to 'Alc/hrtf.cpp')
-rw-r--r-- | Alc/hrtf.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Alc/hrtf.cpp b/Alc/hrtf.cpp index 427326d0..45f63c11 100644 --- a/Alc/hrtf.cpp +++ b/Alc/hrtf.cpp @@ -280,8 +280,7 @@ void GetHrtfCoeffs(const HrtfEntry *Hrtf, ALfloat elevation, ALfloat azimuth, AL const ALfloat mult{blend[c]}; auto blend_coeffs = [mult](const ALfloat src, const ALfloat coeff) noexcept -> ALfloat { return src*mult + coeff; }; - std::transform<const ALfloat*RESTRICT>(srccoeffs, srccoeffs + irSize*2, coeffout, - coeffout, blend_coeffs); + std::transform(srccoeffs, srccoeffs + irSize*2, coeffout, coeffout, blend_coeffs); } } |