aboutsummaryrefslogtreecommitdiffstats
path: root/alc/alu.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'alc/alu.cpp')
-rw-r--r--alc/alu.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/alc/alu.cpp b/alc/alu.cpp
index 45f518ee..c0b7cc2f 100644
--- a/alc/alu.cpp
+++ b/alc/alu.cpp
@@ -277,11 +277,11 @@ ResamplerFunc PrepareResampler(Resampler resampler, uint increment, InterpState
break;
case Resampler::FastBSinc12:
case Resampler::BSinc12:
- BsincPrepare(increment, &state->bsinc, &bsinc12);
+ BsincPrepare(increment, &state->bsinc, &gBSinc12);
break;
case Resampler::FastBSinc24:
case Resampler::BSinc24:
- BsincPrepare(increment, &state->bsinc, &bsinc24);
+ BsincPrepare(increment, &state->bsinc, &gBSinc24);
break;
}
return SelectResampler(resampler, increment);