diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-10-20 12:49:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-20 12:49:43 +0200 |
commit | ef93e1381b2f24abbd357ec0f32b81ed8a02a1fc (patch) | |
tree | cf8fe27491df63ee0985951916ac73560e943e32 /modules | |
parent | 9841c9abe816aa8c5c71a4b7a94dad6813fd48e5 (diff) | |
parent | b9a59f60c13f485c5adf791c8b26357615196eff (diff) |
Merge pull request #54016 from akien-mga/mono-fix-build-52940
Diffstat (limited to 'modules')
-rw-r--r-- | modules/mono/mono_gd/gd_mono_utils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/mono_gd/gd_mono_utils.cpp b/modules/mono/mono_gd/gd_mono_utils.cpp index 13939bd014..09aa9ad948 100644 --- a/modules/mono/mono_gd/gd_mono_utils.cpp +++ b/modules/mono/mono_gd/gd_mono_utils.cpp @@ -450,7 +450,7 @@ void debug_send_unhandled_exception_error(MonoException *p_exc) { int line = si.size() ? si[0].line : __LINE__; String error_msg = "Unhandled exception"; - EngineDebugger::get_script_debugger()->send_error(func, file, line, error_msg, exc_msg, ERR_HANDLER_ERROR, si); + EngineDebugger::get_script_debugger()->send_error(func, file, line, error_msg, exc_msg, true, ERR_HANDLER_ERROR, si); #endif } |