From 7ca2c451f583fac83ae3374586a55738a3cb0c24 Mon Sep 17 00:00:00 2001 From: PJB3005 Date: Mon, 3 Nov 2025 09:18:05 +0100 Subject: [PATCH] Make byondapi.h support ARM64 Needed to make sure DM_64BIT is set --- trampoline/byondapi.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/trampoline/byondapi.h b/trampoline/byondapi.h index da64561..dbf303e 100644 --- a/trampoline/byondapi.h +++ b/trampoline/byondapi.h @@ -44,6 +44,8 @@ #else #define DM_32BIT #endif +#elif defined(__aarch64__) || defined(_M_ARM64) +#define DM_64BIT #endif