diff options
author | Daylily-Zeleen <daylily-zeleen@foxmail.com> | 2024-01-01 19:48:28 +0800 |
---|---|---|
committer | Daylily-Zeleen <daylily-zeleen@foxmail.com> | 2024-01-01 20:01:57 +0800 |
commit | fe6b07381189adb57dbc78150eab602044d541d0 (patch) | |
tree | d6165ce6de632475f76a4de13d462ec3db8d9225 /core/extension | |
parent | 13a0d6e9b253654f5cc2a44f3d0b3cae10440443 (diff) | |
download | redot-engine-fe6b07381189adb57dbc78150eab602044d541d0.tar.gz |
Distinguishs between dynamic library not found and can't be opened.
Diffstat (limited to 'core/extension')
-rw-r--r-- | core/extension/gdextension.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/core/extension/gdextension.cpp b/core/extension/gdextension.cpp index 2bac1f6592..19ffe96a09 100644 --- a/core/extension/gdextension.cpp +++ b/core/extension/gdextension.cpp @@ -715,10 +715,8 @@ Error GDExtension::open_library(const String &p_path, const String &p_entry_symb #endif Error err = OS::get_singleton()->open_dynamic_library(abs_path, library, true, &library_path); - if (err != OK) { - ERR_PRINT("GDExtension dynamic library not found: " + abs_path); - return err; - } + ERR_FAIL_COND_V_MSG(err == ERR_FILE_NOT_FOUND, err, "GDExtension dynamic library not found: " + abs_path); + ERR_FAIL_COND_V_MSG(err != OK, err, "Can't open GDExtension dynamic library: " + abs_path); #if defined(WINDOWS_ENABLED) && defined(TOOLS_ENABLED) // If we copied the file, let's change the library path to point at the original, |