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 /core/os | |
| 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 'core/os')
| -rw-r--r-- | core/os/os.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/os/os.h b/core/os/os.h index 258708eea..c378d36a3 100644 --- a/core/os/os.h +++ b/core/os/os.h @@ -279,6 +279,9 @@ public: bool is_stdout_verbose() const; + virtual void disable_crash_handler() {} + virtual bool is_disable_crash_handler() const { return false; } + enum CursorShape { CURSOR_ARROW, CURSOR_IBEAM, |
