diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2018-07-26 13:48:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-26 13:48:37 +0200 |
commit | 96d37769d90ed9aa52eb23e7672962049d31dfd8 (patch) | |
tree | 4017f5cf2e6218825465b9dbe6afa8324039624d /modules/gdscript/gdscript_functions.cpp | |
parent | 0494bbc5ca2a00ea9196efbec51416ae291066ef (diff) | |
parent | 0b78e4f9e3824361e4984eedd1c57996eb48c546 (diff) | |
download | redot-engine-96d37769d90ed9aa52eb23e7672962049d31dfd8.tar.gz |
Merge pull request #20468 from vnen/typed-gds-fixes
General GDScript fixes
Diffstat (limited to 'modules/gdscript/gdscript_functions.cpp')
-rw-r--r-- | modules/gdscript/gdscript_functions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gdscript_functions.cpp b/modules/gdscript/gdscript_functions.cpp index 63286b2e91..f2e52d48dd 100644 --- a/modules/gdscript/gdscript_functions.cpp +++ b/modules/gdscript/gdscript_functions.cpp @@ -1412,7 +1412,7 @@ bool GDScriptFunctions::is_deterministic(Function p_func) { MethodInfo GDScriptFunctions::get_info(Function p_func) { -#ifdef TOOLS_ENABLED +#ifdef DEBUG_ENABLED //using a switch, so the compiler generates a jumptable switch (p_func) { |