summaryrefslogtreecommitdiffstats
path: root/core/extension
diff options
context:
space:
mode:
authorChris Clyne <chris@lateasusual.com>2024-04-20 21:08:11 +0100
committerChris Clyne <chris@lateasusual.com>2024-04-20 21:08:11 +0100
commit8564e945471d84daef37a74683518dad9db8c49c (patch)
tree84a24ffe207d68c3ac4ca752df4bd18cef80ce88 /core/extension
parent4a0160241fd0c1e874e297f6b08676cf0761e5e8 (diff)
downloadredot-engine-8564e945471d84daef37a74683518dad9db8c49c.tar.gz
GDExtension: Fix missing library path breaking hot reloading
Diffstat (limited to 'core/extension')
-rw-r--r--core/extension/gdextension.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/extension/gdextension.cpp b/core/extension/gdextension.cpp
index 546c40e9cb..b1e94ead8d 100644
--- a/core/extension/gdextension.cpp
+++ b/core/extension/gdextension.cpp
@@ -736,6 +736,8 @@ Error GDExtension::open_library(const String &p_path, const String &p_entry_symb
// If temporary files are generated, let's change the library path to point at the original,
// 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;
}
ERR_FAIL_COND_V_MSG(err == ERR_FILE_NOT_FOUND, err, "GDExtension dynamic library not found: " + abs_path);