diff options
| author | Marcelo Fernandez | 2017-09-07 22:01:49 -0300 |
|---|---|---|
| committer | Marcelo Fernandez | 2017-09-13 10:07:23 -0300 |
| commit | 83fe9373621ab9f7e175a43868b2eda935107539 (patch) | |
| tree | 116a92b2c32713b4f3f907b451e457a9a623d50a /editor/editor_run.cpp | |
| parent | 06138bf18c25a8c5f7e2e5bb1ebd9dcf0b2f28dd (diff) | |
| download | godot-83fe9373621ab9f7e175a43868b2eda935107539.tar.gz godot-83fe9373621ab9f7e175a43868b2eda935107539.tar.zst godot-83fe9373621ab9f7e175a43868b2eda935107539.zip | |
Added a crash handler to dump the backtrace on Windows, Linux and OS X
Diffstat (limited to '')
| -rw-r--r-- | editor/editor_run.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/editor/editor_run.cpp b/editor/editor_run.cpp index e377fa1a8..90cbabcc4 100644 --- a/editor/editor_run.cpp +++ b/editor/editor_run.cpp @@ -72,6 +72,10 @@ Error EditorRun::run(const String &p_scene, const String p_custom_args, const Li screen--; } + if (OS::get_singleton()->is_disable_crash_handler()) { + args.push_back("--disable-crash-handler"); + } + Rect2 screen_rect; screen_rect.position = OS::get_singleton()->get_screen_position(screen); screen_rect.size = OS::get_singleton()->get_screen_size(screen); |
