diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-07-20 23:28:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-20 23:28:35 +0200 |
commit | b5e5eed7ae199a2bc5cf7fe7b08ed33b847bff25 (patch) | |
tree | bc4c8b822d5af2fa199e875e93fa396ad77f864d /main/main.cpp | |
parent | c82daaed483e7ab7df7e44c2d01a906154801905 (diff) | |
parent | cee905f04f453dc7823690bc5c7595a1ee7ef2cd (diff) |
Merge pull request #50663 from reduz/debug-stringnames
Diffstat (limited to 'main/main.cpp')
-rw-r--r-- | main/main.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/main/main.cpp b/main/main.cpp index 0651f4b93f..1e5445fd93 100644 --- a/main/main.cpp +++ b/main/main.cpp @@ -986,11 +986,13 @@ Error Main::setup(const char *execpath, int argc, char *argv[], bool p_second_ph } else if (I->get() == "-d" || I->get() == "--debug") { debug_uri = "local://"; OS::get_singleton()->_debug_stdout = true; -#if defined(DEBUG_ENABLED) && !defined(SERVER_ENABLED) +#if defined(DEBUG_ENABLED) } else if (I->get() == "--debug-collisions") { debug_collisions = true; } else if (I->get() == "--debug-navigation") { debug_navigation = true; + } else if (I->get() == "--debug-stringnames") { + StringName::set_debug_stringnames(true); #endif } else if (I->get() == "--remote-debug") { if (I->next()) { |