From d5c23fc7c69f05413fb448630f37671353785e20 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Tue, 26 Jan 2021 22:58:45 +0100 Subject: [PATCH] (Apple/ARM64) Set __aarch64__ for Core Updater URL --- config.def.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config.def.h b/config.def.h index 5374af7138..77f120e107 100644 --- a/config.def.h +++ b/config.def.h @@ -1346,6 +1346,8 @@ static const bool enable_device_vibration = false; #define DEFAULT_BUILDBOT_SERVER_URL "http://buildbot.libretro.com/nightly/apple/osx/x86_64/latest/" #elif defined(__i386__) || defined(__i486__) || defined(__i686__) #define DEFAULT_BUILDBOT_SERVER_URL "http://bot.libretro.com/nightly/apple/osx/x86/latest/" +#elif defined(__aarch64__) +#define DEFAULT_BUILDBOT_SERVER_URL "http://buildbot.libretro.com/nightly/apple/osx/arm64/latest/" #else #define DEFAULT_BUILDBOT_SERVER_URL "http://buildbot.libretro.com/nightly/apple/osx/ppc/latest/" #endif