aboutsummaryrefslogtreecommitdiffstats
path: root/alc/alu.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2019-09-28 14:35:42 -0700
committerChris Robinson <[email protected]>2019-09-28 14:35:42 -0700
commit4b746b8d37911600bb64e3cb9efe8c370968df1d (patch)
tree6362ae043e4390b4d97d110a3481e3ab1d05b600 /alc/alu.h
parent31ffb0887c44a910a5814cba1fdd5d69a4b49df2 (diff)
Make MAX_RESAMPLER_PADDING specify the total padding
Diffstat (limited to 'alc/alu.h')
-rw-r--r--alc/alu.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/alc/alu.h b/alc/alu.h
index 476e3ab9..abe73245 100644
--- a/alc/alu.h
+++ b/alc/alu.h
@@ -254,7 +254,7 @@ struct ALvoice {
std::array<SendData,MAX_SENDS> mSend;
struct ChannelData {
- alignas(16) std::array<ALfloat,MAX_RESAMPLE_PADDING*2> mPrevSamples;
+ alignas(16) std::array<ALfloat,MAX_RESAMPLER_PADDING> mPrevSamples;
ALfloat mAmbiScale;
BandSplitter mAmbiSplitter;