aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALu.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2012-10-05 06:03:19 -0700
committerChris Robinson <[email protected]>2012-10-05 06:03:19 -0700
commita6287fd407b87b0bf983dcf8fc17ac66c0ae7d23 (patch)
tree68ce82ccac121b92982af6c2d944f4a856057ca7 /Alc/ALu.c
parent16bdf79d4cbb87a90ff70d981d02eecb0fc4bed1 (diff)
Add a special resampler for matching sample rates
Diffstat (limited to 'Alc/ALu.c')
-rw-r--r--Alc/ALu.c2
1 files changed, 1 insertions, 1 deletions
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: