From b684f342f307e47fddeeef21e4c073fedd6a6ecb Mon Sep 17 00:00:00 2001 From: insunaa Date: Mon, 25 Mar 2024 11:07:31 +0100 Subject: [PATCH] G3D: Fix MacOS/Apple Silicon compile --- dep/g3dlite/System.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dep/g3dlite/System.cpp b/dep/g3dlite/System.cpp index fbb3ff2ee85..4ce7f76f1fc 100644 --- a/dep/g3dlite/System.cpp +++ b/dep/g3dlite/System.cpp @@ -288,7 +288,7 @@ void System::init() { m_secondsPerNS = 1.0 / 1.0e9; // System Architecture: -# ifdef (__aarch64__) +# if defined(__aarch64__) m_cpuArch = "ARM64"; m_cpuVendor = "Apple"; # endif