diff options
author | Chris Robinson <[email protected]> | 2019-09-28 14:35:42 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-09-28 14:35:42 -0700 |
commit | 4b746b8d37911600bb64e3cb9efe8c370968df1d (patch) | |
tree | 6362ae043e4390b4d97d110a3481e3ab1d05b600 /alc/alu.h | |
parent | 31ffb0887c44a910a5814cba1fdd5d69a4b49df2 (diff) |
Make MAX_RESAMPLER_PADDING specify the total padding
Diffstat (limited to 'alc/alu.h')
-rw-r--r-- | alc/alu.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |