diff options
author | Chris Robinson <[email protected]> | 2020-09-24 14:21:57 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2020-09-24 14:21:57 -0700 |
commit | 39f4ea61c5978b7abca0ef79de0b207638e7175f (patch) | |
tree | 2503bcbd5977d4b31a90f906dd10fa18bb3f58bc | |
parent | cef82153b691ac26ad929e7e6afbfbace62d07c4 (diff) |
Add missing linear resampler to the option setting list
-rw-r--r-- | alc/voice.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/alc/voice.cpp b/alc/voice.cpp index 70f49489..6b1fc3d4 100644 --- a/alc/voice.cpp +++ b/alc/voice.cpp @@ -147,6 +147,7 @@ void aluInitMixer() constexpr ResamplerEntry ResamplerList[]{ { "none", Resampler::Point }, { "point", Resampler::Point }, + { "linear", Resampler::Linear }, { "cubic", Resampler::Cubic }, { "bsinc12", Resampler::BSinc12 }, { "fast_bsinc12", Resampler::FastBSinc12 }, |