diff options
author | Juan Linietsky <reduzio@gmail.com> | 2017-11-30 10:00:10 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2017-11-30 10:00:55 -0300 |
commit | 9678231b109c333a5273325c8758241310cd27f4 (patch) | |
tree | 8f0ae2410169b471c3a29059408053c4341ec56c /modules | |
parent | 831502edddd3d10f786214494b3cd8b996cfc9c1 (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.cpp | 2 |
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; } |