aboutsummaryrefslogtreecommitdiffstats
path: root/alc/effects/autowah.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'alc/effects/autowah.cpp')
-rw-r--r--alc/effects/autowah.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/alc/effects/autowah.cpp b/alc/effects/autowah.cpp
index de91c32f..5ac51e32 100644
--- a/alc/effects/autowah.cpp
+++ b/alc/effects/autowah.cpp
@@ -52,7 +52,7 @@ struct AutowahState final : public EffectState {
struct {
float cos_w0;
float alpha;
- } mEnv[BUFFERSIZE];
+ } mEnv[BufferLineSize];
struct {
/* Effect filters' history. */
@@ -66,7 +66,7 @@ struct AutowahState final : public EffectState {
} mChans[MAX_AMBI_CHANNELS];
/* Effects buffers */
- alignas(16) float mBufferOut[BUFFERSIZE];
+ alignas(16) float mBufferOut[BufferLineSize];
void deviceUpdate(const ALCdevice *device) override;