cleanup and 32 bit fallback
This commit is contained in:
@@ -267,6 +267,10 @@ class AssetMacro {
|
||||
}
|
||||
|
||||
var source = limeRoot + "ndll/" + platformDirectory + "/lime.ndll";
|
||||
if (!FileSystem.exists(source) && platformDirectory.endsWith("64")) {
|
||||
platformDirectory = platformDirectory.substr(0, platformDirectory.length - 2);
|
||||
source = limeRoot + "ndll/" + platformDirectory + "/lime.ndll";
|
||||
}
|
||||
if (!FileSystem.exists(source)) {
|
||||
Context.warning("Lime native library not found: " + source, Context.currentPos());
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user