summaryrefslogtreecommitdiff
path: root/core/error
diff options
context:
space:
mode:
authorYuri Roubinsky <chaosus89@gmail.com>2021-11-26 12:18:15 +0300
committerYuri Roubinsky <chaosus89@gmail.com>2021-11-26 13:10:55 +0300
commita4b7de6b236d273843b97fdf47114d1823a30271 (patch)
treead5205f7fd4c2220e901150818fa9c258f26272c /core/error
parent4813abc6e7168e8fdc6c30c23f9c26fb0a2d00af (diff)
Fix console colors on Windows
Diffstat (limited to 'core/error')
-rw-r--r--core/error/error_macros.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/error/error_macros.cpp b/core/error/error_macros.cpp
index 719ea8afb5..61bb949ed4 100644
--- a/core/error/error_macros.cpp
+++ b/core/error/error_macros.cpp
@@ -76,7 +76,7 @@ void _err_print_error(const char *p_function, const char *p_file, int p_line, co
// Main error printing function.
void _err_print_error(const char *p_function, const char *p_file, int p_line, const char *p_error, const char *p_message, bool p_editor_notify, ErrorHandlerType p_type) {
- OS::get_singleton()->print_error(p_function, p_file, p_line, p_error, p_message, (Logger::ErrorType)p_type);
+ OS::get_singleton()->print_error(p_function, p_file, p_line, p_error, p_message, p_editor_notify, (Logger::ErrorType)p_type);
_global_lock();
ErrorHandlerList *l = error_handler_list;