summaryrefslogtreecommitdiffstats
path: root/src/godot.cpp
diff options
context:
space:
mode:
authorDavid Snopek <dsnopek@gmail.com>2023-09-15 15:29:33 -0500
committerGitHub <noreply@github.com>2023-09-15 15:29:33 -0500
commit73500966aef159076831efb6141a6b36e102d69e (patch)
tree6f856a30bc7d17591ff6a70d56ab9c1d6c6025f7 /src/godot.cpp
parent6caf4909d42c04de25d9c34e89da7aa078fb485f (diff)
parent634ed09ec0220f73f81e8400ad70f8619edfdbff (diff)
downloadredot-cpp-73500966aef159076831efb6141a6b36e102d69e.tar.gz
Merge pull request #1243 from dsnopek/load-print-error-with-message
Load 'print_error_with_message' function
Diffstat (limited to 'src/godot.cpp')
-rw-r--r--src/godot.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/godot.cpp b/src/godot.cpp
index 383867c..69d471b 100644
--- a/src/godot.cpp
+++ b/src/godot.cpp
@@ -271,7 +271,7 @@ GDExtensionBool GDExtensionBinding::init(GDExtensionInterfaceGetProcAddress p_ge
LOAD_PROC_ADDRESS(mem_alloc, GDExtensionInterfaceMemAlloc);
LOAD_PROC_ADDRESS(mem_realloc, GDExtensionInterfaceMemRealloc);
LOAD_PROC_ADDRESS(mem_free, GDExtensionInterfaceMemFree);
- LOAD_PROC_ADDRESS(print_error, GDExtensionInterfacePrintError);
+ LOAD_PROC_ADDRESS(print_error_with_message, GDExtensionInterfacePrintErrorWithMessage);
LOAD_PROC_ADDRESS(print_warning, GDExtensionInterfacePrintWarning);
LOAD_PROC_ADDRESS(print_warning_with_message, GDExtensionInterfacePrintWarningWithMessage);
LOAD_PROC_ADDRESS(print_script_error, GDExtensionInterfacePrintScriptError);