Fix console colors on Windows

This commit is contained in:
Yuri Roubinsky 2021-11-26 12:18:15 +03:00
parent 4813abc6e7
commit a4b7de6b23
6 changed files with 7 additions and 7 deletions

View file

@ -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();
};