From cc39299f4fc2dc97476c068c985f0cca580d4bce Mon Sep 17 00:00:00 2001 From: insunaa Date: Mon, 25 Mar 2024 10:33:18 +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 fbb3ff2ee8..4ce7f76f1f 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