summaryrefslogtreecommitdiffstats
path: root/src/core/error_macros.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/error_macros.cpp')
-rw-r--r--src/core/error_macros.cpp4
1 files changed, 2 insertions, 2 deletions
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);
}
}