diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-01-10 10:39:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-10 10:39:20 +0100 |
commit | aebdc4c2126789b915b0fb753f0594fec0f0226d (patch) | |
tree | cf8c806c82c17c6362c46723acc79cef63efd6a3 /modules/mono/csharp_script.cpp | |
parent | 415d128249f71babb2b11c880b14af721e3c3944 (diff) | |
parent | f7de51b3a6bc191cd0d79c1079889fb7a104b504 (diff) |
Merge pull request #15541 from neikeq/look-all-i-want-to-tell-you-is
Mono: Some fixes for #15463
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 2d7583cc23..db2d0a9780 100644 --- a/modules/mono/csharp_script.cpp +++ b/modules/mono/csharp_script.cpp @@ -449,7 +449,7 @@ Vector<ScriptLanguage::StackInfo> CSharpLanguage::debug_get_current_stack_info() // Printing an error here will result in endless recursion, so we must be careful - if (!gdmono->is_runtime_initialized() && GDMono::get_singleton()->get_editor_tools_assembly()) + if (!gdmono->is_runtime_initialized() && GDMono::get_singleton()->get_api_assembly()) return Vector<StackInfo>(); MonoObject *stack_trace = mono_object_new(mono_domain_get(), CACHED_CLASS(System_Diagnostics_StackTrace)->get_mono_ptr()); |