Copy correct ndll on arm64 mac

This commit is contained in:
tobil4sk
2024-01-27 13:02:28 +00:00
committed by Josh Tynjala
parent 1ebce5faa3
commit 45972bb733

View File

@@ -535,6 +535,6 @@ class MacPlatform extends PlatformTarget
private inline function get_dirSuffix():String
{
return targetArchitecture == X64 ? "64" : "";
return targetArchitecture == X64 ? "64" : targetArchitecture == ARM64 ? "Arm64" : "";
}
}