aboutsummaryrefslogtreecommitdiffstats
path: root/core/bufferline.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/bufferline.h')
-rw-r--r--core/bufferline.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/bufferline.h b/core/bufferline.h
index 07983140..503e208d 100644
--- a/core/bufferline.h
+++ b/core/bufferline.h
@@ -7,8 +7,8 @@
* more memory and are harder on cache, while smaller values may need more
* iterations for mixing.
*/
-#define BUFFERSIZE 1024
+constexpr int BufferLineSize{1024};
-using FloatBufferLine = std::array<float,BUFFERSIZE>;
+using FloatBufferLine = std::array<float,BufferLineSize>;
#endif /* CORE_BUFFERLINE_H */