From 45972bb7334056270d0093856dbdb8ae370146b7 Mon Sep 17 00:00:00 2001 From: tobil4sk Date: Sat, 27 Jan 2024 13:02:28 +0000 Subject: [PATCH] Copy correct ndll on arm64 mac --- tools/platforms/MacPlatform.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" : ""; } }