From 8750810f5cfceeffd5acf2f21e779d470d0dc88b Mon Sep 17 00:00:00 2001
From: Chris Robinson <chris.kcat@gmail.com>
Date: Sat, 28 Nov 2020 03:38:20 -0800
Subject: Change a couple macros into constexpr variables

---
 alc/effects/fshifter.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'alc/effects/fshifter.cpp')

diff --git a/alc/effects/fshifter.cpp b/alc/effects/fshifter.cpp
index da9b0ce2..c1acf08c 100644
--- a/alc/effects/fshifter.cpp
+++ b/alc/effects/fshifter.cpp
@@ -71,9 +71,9 @@ struct FshifterState final : public EffectState {
     complex_d mOutFIFO[HIL_STEP]{};
     complex_d mOutputAccum[HIL_SIZE]{};
     complex_d mAnalytic[HIL_SIZE]{};
-    complex_d mOutdata[BUFFERSIZE]{};
+    complex_d mOutdata[BufferLineSize]{};
 
-    alignas(16) float mBufferOut[BUFFERSIZE]{};
+    alignas(16) float mBufferOut[BufferLineSize]{};
 
     /* Effect gains for each output channel */
     struct {
-- 
cgit v1.2.3