summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorLioncash <mai.iam2048@gmail.com>2024-01-23 16:51:31 -0500
committerLioncash <mai.iam2048@gmail.com>2024-01-23 16:51:31 -0500
commit258161bab7de7fdc5517ca283c9da1e133c76543 (patch)
treeb6aa5b57729100e7c22cf43db85a65dfea037d22 /Source/Core
parent4ccc5178a6eb8a29367d920200a17c5569b79f54 (diff)
DolphinAnalytics: Use #ifdef instead of #if for platform testing
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/Core/DolphinAnalytics.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Core/DolphinAnalytics.cpp b/Source/Core/Core/DolphinAnalytics.cpp
index 5593a66963..a7bb39d394 100644
--- a/Source/Core/Core/DolphinAnalytics.cpp
+++ b/Source/Core/Core/DolphinAnalytics.cpp
@@ -293,7 +293,7 @@ void DolphinAnalytics::MakeBaseBuilder()
};
// Under arm64, we need to call objc_msgSend to recieve a struct.
// On x86_64, we need to explicitly call objc_msgSend_stret for a struct.
-#if _M_ARM_64
+#ifdef _M_ARM_64
#define msgSend objc_msgSend
#else
#define msgSend objc_msgSend_stret