diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2019-11-11 13:27:51 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-11-11 13:27:51 +0100 |
| commit | 6b1628f9fcc50dc16af08c2b87f27108ff6e15c5 (patch) | |
| tree | 5bb1ef20e714dc1d9a8421ee2419036534d2f230 /core/os/os.h | |
| parent | 5c038acdc159708113fdc911c44abf1d6dcdbdf7 (diff) | |
| parent | 83069a3c0f01507acd24672c90b24c9eba868aba (diff) | |
Merge pull request #33517 from madmiraal/fix-_MSG-macros
Send *_MSG macros' explanations directly to the _err_print_error().
Diffstat (limited to 'core/os/os.h')
| -rw-r--r-- | core/os/os.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/core/os/os.h b/core/os/os.h index b5224c4f63..687ccaaba5 100644 --- a/core/os/os.h +++ b/core/os/os.h @@ -61,8 +61,6 @@ class OS { bool _allow_layered; bool _use_vsync; - char *last_error; - void *_stack_bottom; CompositeLogger *_logger; @@ -155,10 +153,6 @@ public: virtual void alert(const String &p_alert, const String &p_title = "ALERT!") = 0; virtual String get_stdin_string(bool p_block = true) = 0; - virtual void set_last_error(const char *p_error); - virtual const char *get_last_error() const; - virtual void clear_last_error(); - enum MouseMode { MOUSE_MODE_VISIBLE, MOUSE_MODE_HIDDEN, |