From 6abca9b0f0f0725f0742b286f9cc5b81c4387a19 Mon Sep 17 00:00:00 2001 From: EntireTwix Date: Wed, 23 Jun 2021 19:47:22 -0700 Subject: [PATCH] made constexpr rather then macro --- include/consts.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/consts.hpp b/include/consts.hpp index c8991d0..7cfdc5b 100644 --- a/include/consts.hpp +++ b/include/consts.hpp @@ -26,4 +26,4 @@ if false, when frequency is hit save cons CONSTANT disk usage */ -#define CONSERVATIVE_DISK_SAVE true //TURN THIS OFF IF YOU THINK WITHIN YOUR SAVE FREQUENCY OF X MINUTES ITS GUARANTEED A CHANGE WILL OCCUR (typically massive servers) \ No newline at end of file +constexpr bool conservative_disk_save = true; //TURN THIS OFF IF YOU THINK WITHIN YOUR SAVE FREQUENCY OF X MINUTES ITS GUARANTEED A CHANGE WILL OCCUR (typically massive servers) \ No newline at end of file