diff options
author | Samuel Nicholas <nicholas.samuel@gmail.com> | 2024-03-19 23:54:50 +1030 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-03-26 00:13:56 +0100 |
commit | 5f89b150980f41153d7dd698dca5d6839e3d0b75 (patch) | |
tree | 1bc40a2315a80b5d374e9c327b304a745a5342e4 /core/extension | |
parent | 7c6e85de0dd7627d1a43acf5f144cee34df6ab36 (diff) | |
download | redot-engine-5f89b150980f41153d7dd698dca5d6839e3d0b75.tar.gz |
Print correct path when unable to find GDExtension library
Diffstat (limited to 'core/extension')
-rw-r--r-- | core/extension/gdextension.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/extension/gdextension.cpp b/core/extension/gdextension.cpp index 5d43dceece..0ed4c3380c 100644 --- a/core/extension/gdextension.cpp +++ b/core/extension/gdextension.cpp @@ -735,7 +735,7 @@ Error GDExtension::open_library(const String &p_path, const String &p_entry_symb bool library_copied = false; if (Engine::get_singleton()->is_editor_hint()) { if (!FileAccess::exists(abs_path)) { - ERR_PRINT("GDExtension library not found: " + library_path); + ERR_PRINT("GDExtension library not found: " + abs_path); return ERR_FILE_NOT_FOUND; } @@ -750,7 +750,7 @@ Error GDExtension::open_library(const String &p_path, const String &p_entry_symb Error copy_err = DirAccess::copy_absolute(abs_path, copy_path); if (copy_err) { - ERR_PRINT("Error copying GDExtension library: " + library_path); + ERR_PRINT("Error copying GDExtension library: " + abs_path); return ERR_CANT_CREATE; } FileAccess::set_hidden_attribute(copy_path, true); |