aboutsummaryrefslogtreecommitdiffstats
path: root/alc/alu.cpp
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2023-02-07 00:30:05 -0800
committerChris Robinson <[email protected]>2023-02-07 00:30:05 -0800
commitba0f592715e7a0101bed4c2491c624db8915002d (patch)
tree447499eae6e876d607fb535fc759ba886852d69d /alc/alu.cpp
parentda845ddd9c35a1e1fcff03ea342636ae4bb8018b (diff)
Rename the bsinc table variables
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);