From a4b7de6b236d273843b97fdf47114d1823a30271 Mon Sep 17 00:00:00 2001 From: Yuri Roubinsky Date: Fri, 26 Nov 2021 12:18:15 +0300 Subject: Fix console colors on Windows --- core/error/error_macros.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/error') 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; -- cgit v1.2.3