From ef528d3a8624918eb98e02604bbbdb3e47e555e9 Mon Sep 17 00:00:00 2001 From: Bastiaan Olij Date: Thu, 28 Oct 2021 19:20:56 +1100 Subject: Rename interface to gdn_interface because it's a defined keyword under windows --- src/core/error_macros.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/core/error_macros.cpp') diff --git a/src/core/error_macros.cpp b/src/core/error_macros.cpp index 0b60a0d..d0c922e 100644 --- a/src/core/error_macros.cpp +++ b/src/core/error_macros.cpp @@ -38,9 +38,9 @@ namespace godot { 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_is_warning) { if (p_is_warning) { - internal::interface->print_warning(p_message, p_function, p_file, p_line); + internal::gdn_interface->print_warning(p_message, p_function, p_file, p_line); } else { - internal::interface->print_error(p_message, p_function, p_file, p_line); + internal::gdn_interface->print_error(p_message, p_function, p_file, p_line); } } -- cgit v1.2.3