aboutsummaryrefslogtreecommitdiffstats
path: root/alc/converter.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/converter.h
parent31ffb0887c44a910a5814cba1fdd5d69a4b49df2 (diff)
Make MAX_RESAMPLER_PADDING specify the total padding
Diffstat (limited to 'alc/converter.h')
-rw-r--r--alc/converter.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/alc/converter.h b/alc/converter.h
index 8390eae3..d8fe7ba9 100644
--- a/alc/converter.h
+++ b/alc/converter.h
@@ -30,7 +30,7 @@ struct SampleConverter {
alignas(16) ALfloat mDstSamples[BUFFERSIZE]{};
struct ChanSamples {
- alignas(16) ALfloat PrevSamples[MAX_RESAMPLE_PADDING*2];
+ alignas(16) ALfloat PrevSamples[MAX_RESAMPLER_PADDING];
};
al::FlexArray<ChanSamples> mChan;