aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALc.c
diff options
context:
space:
mode:
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r--Alc/ALc.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/Alc/ALc.c b/Alc/ALc.c
index fcb6504b..b9c01128 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -1011,9 +1011,11 @@ static void alc_initconfig(void)
DefaultResampler = LinearResampler;
else if(strcasecmp(str, "sinc4") == 0)
DefaultResampler = FIR4Resampler;
+ else if(strcasecmp(str, "sinc6") == 0)
+ DefaultResampler = FIR6Resampler;
else if(strcasecmp(str, "cubic") == 0)
{
- ERR("Resampler option \"cubic\" is deprecated, using sinc4\n");
+ WARN("Resampler option \"cubic\" is deprecated, using sinc4\n");
DefaultResampler = FIR4Resampler;
}
else