From 83afffc3252b940c9e996389afd5eeed71242d3f Mon Sep 17 00:00:00 2001 From: Andrej Babic Date: Thu, 23 Apr 2020 09:51:24 +0200 Subject: [PATCH] Added module size to config --- core-buffer/include/buffer_config.hpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core-buffer/include/buffer_config.hpp b/core-buffer/include/buffer_config.hpp index 6df2caa..83b8050 100644 --- a/core-buffer/include/buffer_config.hpp +++ b/core-buffer/include/buffer_config.hpp @@ -5,6 +5,10 @@ #include namespace core_buffer { + + const size_t MODULE_X_SIZE = 1024; + const size_t MODULE_Y_SIZE = 512; + // How many frames we store in each file. // Must be power of 10 and <= than FOLDER_MOD const size_t FILE_MOD = 1000;