diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-08-02 15:54:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-02 15:54:18 +0200 |
commit | 33258d850cf6b40d9b20ba9643f98b3553c392c4 (patch) | |
tree | cb918e8226e14369c0ab37cf9969ab206ed747b2 /core/config | |
parent | 4f8d31fc68c1b2276cbcbb62a308d59313b9fac6 (diff) | |
parent | b221eab4260c471c37ff2aae2546fcfa6dd7ac58 (diff) |
Merge pull request #61315 from lawnjelly/variant_bucket_pools
Variant memory pools
Diffstat (limited to 'core/config')
-rw-r--r-- | core/config/engine.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/config/engine.cpp b/core/config/engine.cpp index 44ad4961d9..1a6093869f 100644 --- a/core/config/engine.cpp +++ b/core/config/engine.cpp @@ -194,11 +194,11 @@ bool Engine::is_validation_layers_enabled() const { } void Engine::set_print_error_messages(bool p_enabled) { - _print_error_enabled = p_enabled; + CoreGlobals::print_error_enabled = p_enabled; } bool Engine::is_printing_error_messages() const { - return _print_error_enabled; + return CoreGlobals::print_error_enabled; } void Engine::add_singleton(const Singleton &p_singleton) { |