[Base] fix definition of transient bool cvar

This commit is contained in:
Satori 2020-08-27 18:15:07 +01:00
parent b2f5186249
commit 838870caa4
1 changed files with 1 additions and 1 deletions

View File

@ -196,7 +196,7 @@ CommandVar<T>* register_commandvar(std::string_view name, T* default_value,
std::filesystem::path)
#define DEFINE_transient_bool(name, default_value, description, category) \
DEFINE_CVar(name, default_value, description, category, true, bool)
DEFINE_CVar(name, default_value, description, category, true, false, bool)
#define DEFINE_transient_string(name, default_value, description, category) \
DEFINE_CVar(name, default_value, description, category, true, false, \