Changed the dynamic library open function to allow setting the path of the library to open extra libraries.

This commit is contained in:
Juan Linietsky 2017-11-30 10:00:10 -03:00
parent 831502eddd
commit 9678231b10
6 changed files with 21 additions and 8 deletions

View file

@ -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;
}