Merge pull request #13412 from BastiaanOlij/fix_loadlibraryexw
Needed a broader search path flag
This commit is contained in:
commit
d2e05b6e9b
1 changed files with 1 additions and 1 deletions
|
@ -1597,7 +1597,7 @@ Error OS_Windows::open_dynamic_library(const String p_path, void *&p_library_han
|
|||
cookie = AddDllDirectory(p_path.get_base_dir().c_str());
|
||||
}
|
||||
|
||||
p_library_handle = (void *)LoadLibraryExW(p_path.c_str(),NULL,p_also_set_library_path ? LOAD_LIBRARY_SEARCH_USER_DIRS : 0);
|
||||
p_library_handle = (void *)LoadLibraryExW(p_path.c_str(), NULL, p_also_set_library_path ? LOAD_LIBRARY_SEARCH_DEFAULT_DIRS : 0);
|
||||
|
||||
if (p_also_set_library_path) {
|
||||
RemoveDllDirectory(cookie);
|
||||
|
|
Loading…
Reference in a new issue