diff options
| author | David Snopek <dsnopek@gmail.com> | 2023-05-31 01:32:44 -0500 |
|---|---|---|
| committer | David Snopek <dsnopek@gmail.com> | 2023-05-31 01:32:44 -0500 |
| commit | 59bffc94a8b9e75c0d23650f1deeb0fd39a7d4c1 (patch) | |
| tree | 8efb130cd10f6b9b84464f6f4e3d562ec62376ad /src | |
| parent | 2078c00babe4ee302bff91a636d7c359a087bc0c (diff) | |
| download | redot-cpp-59bffc94a8b9e75c0d23650f1deeb0fd39a7d4c1.tar.gz | |
Correctly load gdextension_interface_print_error
Diffstat (limited to 'src')
| -rw-r--r-- | src/godot.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/godot.cpp b/src/godot.cpp index af840f2..298c965 100644 --- a/src/godot.cpp +++ b/src/godot.cpp @@ -235,7 +235,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_with_message, GDExtensionInterfacePrintErrorWithMessage); + LOAD_PROC_ADDRESS(print_error, GDExtensionInterfacePrintError); LOAD_PROC_ADDRESS(print_warning, GDExtensionInterfacePrintWarning); LOAD_PROC_ADDRESS(print_warning_with_message, GDExtensionInterfacePrintWarningWithMessage); LOAD_PROC_ADDRESS(print_script_error, GDExtensionInterfacePrintScriptError); |
