summaryrefslogtreecommitdiffstats
path: root/core/extension
diff options
context:
space:
mode:
authorMai Lavelle <mai.lavelle@gmail.com>2024-07-14 20:37:38 -0400
committerGitHub <noreply@github.com>2024-07-14 20:37:38 -0400
commit16eea2c837fa59818760b6311355fb4811e70861 (patch)
tree4d4f3ca8d5cb96293f3fad97d89ad34885571938 /core/extension
parent97b8ad1af0f2b4a216f6f1263bef4fbc69e56c7b (diff)
downloadredot-engine-16eea2c837fa59818760b6311355fb4811e70861.tar.gz
Fix to restore `library_path` as absolute path
Diffstat (limited to 'core/extension')
-rw-r--r--core/extension/gdextension.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/extension/gdextension.cpp b/core/extension/gdextension.cpp
index 47628e4ea0..8e2366fc95 100644
--- a/core/extension/gdextension.cpp
+++ b/core/extension/gdextension.cpp
@@ -795,7 +795,7 @@ Error GDExtension::open_library(const String &p_path, const String &p_entry_symb
// because that's what we want to check to see if it's changed.
library_path = actual_lib_path.get_base_dir().path_join(p_path.get_file());
} else {
- library_path = p_path;
+ library_path = actual_lib_path;
}
ERR_FAIL_COND_V_MSG(err == ERR_FILE_NOT_FOUND, err, "GDExtension dynamic library not found: " + abs_path);