diff --git a/tools/platforms/MacPlatform.hx b/tools/platforms/MacPlatform.hx index 00d631497..f2161d936 100644 --- a/tools/platforms/MacPlatform.hx +++ b/tools/platforms/MacPlatform.hx @@ -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" : ""; } }