From 9678231b109c333a5273325c8758241310cd27f4 Mon Sep 17 00:00:00 2001 From: Juan Linietsky Date: Thu, 30 Nov 2017 10:00:10 -0300 Subject: Changed the dynamic library open function to allow setting the path of the library to open extra libraries. --- modules/gdnative/gdnative.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules') 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; } -- cgit v1.2.3