From 7780926b25567d098c36439d8b12b1c6d4631f86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Fri, 28 Apr 2023 11:09:12 +0200 Subject: GDScript: Fix template_debug compilation with TOOLS/DEBUG macro mismatch --- modules/gdscript/gdscript.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/gdscript/gdscript.cpp') diff --git a/modules/gdscript/gdscript.cpp b/modules/gdscript/gdscript.cpp index 3bc11c69e9..d0790aba25 100644 --- a/modules/gdscript/gdscript.cpp +++ b/modules/gdscript/gdscript.cpp @@ -741,7 +741,7 @@ Error GDScript::reload(bool p_keep_state) { bool can_run = ScriptServer::is_scripting_enabled() || is_tool(); -#ifdef DEBUG_ENABLED +#ifdef TOOLS_ENABLED if (p_keep_state && can_run && is_valid()) { _save_old_static_data(); } @@ -818,7 +818,7 @@ Error GDScript::reload(bool p_keep_state) { } } -#ifdef DEBUG_ENABLED +#ifdef TOOLS_ENABLED if (can_run && p_keep_state) { _restore_old_static_data(); } -- cgit v1.2.3