From a6287fd407b87b0bf983dcf8fc17ac66c0ae7d23 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Fri, 5 Oct 2012 06:03:19 -0700 Subject: Add a special resampler for matching sample rates --- Alc/ALu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Alc/ALu.c') diff --git a/Alc/ALu.c b/Alc/ALu.c index 6d75e20e..8dfe87e5 100644 --- a/Alc/ALu.c +++ b/Alc/ALu.c @@ -54,7 +54,7 @@ ALfloat ZScale = 1.0f; static ResamplerFunc SelectResampler(enum Resampler Resampler, ALuint increment) { if(increment == FRACTIONONE) - return Resample_point32_C; + return Resample_copy32_C; switch(Resampler) { case PointResampler: -- cgit v1.2.3