Revert "Move native DLL directory to 'lib'"

This reverts commit 20f626dab8.
This commit is contained in:
Joshua Granick
2019-06-24 10:37:22 -07:00
parent f637bdd8ef
commit ef154d2916
15 changed files with 57 additions and 55 deletions

View File

@@ -154,11 +154,11 @@ class CFFI
if (haxelib != "")
{
result = __tryLoad(haxelib + slash + "lib" + slash + __sysName() + slash + library, library, method, args);
result = __tryLoad(haxelib + slash + "ndll" + slash + __sysName() + slash + library, library, method, args);
if (result == null)
{
result = __tryLoad(haxelib + slash + "lib" + slash + __sysName() + "64" + slash + library, library, method, args);
result = __tryLoad(haxelib + slash + "ndll" + slash + __sysName() + "64" + slash + library, library, method, args);
}
}
}