diff options
author | Yuri Roubinsky <chaosus89@gmail.com> | 2021-11-26 12:18:15 +0300 |
---|---|---|
committer | Yuri Roubinsky <chaosus89@gmail.com> | 2021-11-26 13:10:55 +0300 |
commit | a4b7de6b236d273843b97fdf47114d1823a30271 (patch) | |
tree | ad5205f7fd4c2220e901150818fa9c258f26272c /drivers/unix | |
parent | 4813abc6e7168e8fdc6c30c23f9c26fb0a2d00af (diff) |
Fix console colors on Windows
Diffstat (limited to 'drivers/unix')
-rw-r--r-- | drivers/unix/os_unix.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/unix/os_unix.h b/drivers/unix/os_unix.h index cbc870d385..67ee6ac856 100644 --- a/drivers/unix/os_unix.h +++ b/drivers/unix/os_unix.h @@ -102,7 +102,7 @@ public: class UnixTerminalLogger : public StdLogger { public: - virtual void log_error(const char *p_function, const char *p_file, int p_line, const char *p_code, const char *p_rationale, bool p_editor_notify, ErrorType p_type = ERR_ERROR); + virtual void log_error(const char *p_function, const char *p_file, int p_line, const char *p_code, const char *p_rationale, bool p_editor_notify = false, ErrorType p_type = ERR_ERROR) override; virtual ~UnixTerminalLogger(); }; |