diff options
| author | Hein-Pieter van Braam | 2017-09-13 18:05:31 +0200 |
|---|---|---|
| committer | GitHub | 2017-09-13 18:05:31 +0200 |
| commit | d6b392825fc3e22d9e0c62f0d17633c4224eb28f (patch) | |
| tree | 5c9bc70e0a9ad094fb22398d9ba6e57bc09aba85 /editor/editor_run.cpp | |
| parent | 322b0bee4967545383fba8a2c9b1253e2a2bbf43 (diff) | |
| parent | 83fe9373621ab9f7e175a43868b2eda935107539 (diff) | |
| download | godot-d6b392825fc3e22d9e0c62f0d17633c4224eb28f.tar.gz godot-d6b392825fc3e22d9e0c62f0d17633c4224eb28f.tar.zst godot-d6b392825fc3e22d9e0c62f0d17633c4224eb28f.zip | |
Merge pull request #11061 from marcelofg55/dump_backtrace
Add a segfault 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); |
