aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/converter.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2017-08-25 05:52:19 -0700
committerChris Robinson <[email protected]>2017-08-25 05:52:19 -0700
commit561e95528f55be2837541239236281c4cd63d728 (patch)
tree6d57db817feef0cc132293e0c319dd2796a8bc41 /Alc/converter.c
parent9ea32713b57fd95832172de5e8d8534339bb646b (diff)
Rename the bsinc resampler to bsinc12
Diffstat (limited to 'Alc/converter.c')
-rw-r--r--Alc/converter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/converter.c b/Alc/converter.c
index 304e9a80..fa9928c2 100644
--- a/Alc/converter.c
+++ b/Alc/converter.c
@@ -34,7 +34,7 @@ SampleConverter *CreateSampleConverter(enum DevFmtType srcType, enum DevFmtType
{
/* TODO: Allow other resamplers. */
BsincPrepare(converter->mIncrement, &converter->mState.bsinc);
- converter->mResample = SelectResampler(BSincResampler);
+ converter->mResample = SelectResampler(BSinc12Resampler);
}
END_MIXER_MODE();