diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-01-19 22:24:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-19 22:24:23 +0100 |
commit | 8cc9bb2539f248b53dc3de166dbdaf3c87f7151f (patch) | |
tree | 88a888da5ddfac0a156d1696138a231a368f9084 /modules/mono/csharp_script.cpp | |
parent | 5358254b6ca752b88138a2b523767093f572ca4c (diff) | |
parent | a6105c8ea0bdae9d56d1943409d89cc71288306a (diff) |
Merge pull request #35326 from neikeq/issue-30496
Fix ClassDB API portability with some android and editor classes
Diffstat (limited to 'modules/mono/csharp_script.cpp')
-rw-r--r-- | modules/mono/csharp_script.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/csharp_script.cpp b/modules/mono/csharp_script.cpp index 0f6b8357b8..210267e681 100644 --- a/modules/mono/csharp_script.cpp +++ b/modules/mono/csharp_script.cpp @@ -106,7 +106,7 @@ Error CSharpLanguage::execute_file(const String &p_path) { void CSharpLanguage::init() { #ifdef DEBUG_METHODS_ENABLED - if (OS::get_singleton()->get_cmdline_args().find("--class_db_to_json")) { + if (OS::get_singleton()->get_cmdline_args().find("--class-db-json")) { class_db_api_to_json("user://class_db_api.json", ClassDB::API_CORE); #ifdef TOOLS_ENABLED class_db_api_to_json("user://class_db_api_editor.json", ClassDB::API_EDITOR); |