From 9d5b76b757f1cb5ad3d903bb260c980f5bd8d6a6 Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Thu, 28 Jul 2022 13:34:52 +0200 Subject: [PATCH] fix typo in new anim handlers --- src/config/ConfigManager.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/ConfigManager.hpp b/src/config/ConfigManager.hpp index 58b2789e..c34e0951 100644 --- a/src/config/ConfigManager.hpp +++ b/src/config/ConfigManager.hpp @@ -17,7 +17,7 @@ #define STRVAL_EMPTY "[[EMPTY]]" #define INITANIMCFG(name) animationConfig[name] = {} -#define CREATEANIMCFG(name, parent) animationConfig[name] = {true, "", "", 0.f, -1, &animationConfig["global"], &animationConfig[parent]} +#define CREATEANIMCFG(name, parent) animationConfig[name] = {false, "", "", 0.f, -1, &animationConfig["global"], &animationConfig[parent]} struct SConfigValue { int64_t intValue = -1;