summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2017-11-30 10:00:10 -0300
committerJuan Linietsky <reduzio@gmail.com>2017-11-30 10:00:55 -0300
commit9678231b109c333a5273325c8758241310cd27f4 (patch)
tree8f0ae2410169b471c3a29059408053c4341ec56c /modules
parent831502edddd3d10f786214494b3cd8b996cfc9c1 (diff)
Changed the dynamic library open function to allow setting the path of the library to open extra libraries.
Diffstat (limited to 'modules')
-rw-r--r--modules/gdnative/gdnative.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdnative/gdnative.cpp b/modules/gdnative/gdnative.cpp
index 0132ef3c5d..21c24fabd8 100644
--- a/modules/gdnative/gdnative.cpp
+++ b/modules/gdnative/gdnative.cpp
@@ -144,7 +144,7 @@ bool GDNative::initialize() {
}
}
- Error err = OS::get_singleton()->open_dynamic_library(path, native_handle);
+ Error err = OS::get_singleton()->open_dynamic_library(path, native_handle,true);
if (err != OK) {
return false;
}