mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-12 03:40:59 +00:00
DolphinAnalytics: Use #ifdef instead of #if for platform testing
This commit is contained in:
parent
4ccc5178a6
commit
258161bab7
@ -293,7 +293,7 @@ void DolphinAnalytics::MakeBaseBuilder()
|
|||||||
};
|
};
|
||||||
// Under arm64, we need to call objc_msgSend to recieve a struct.
|
// 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.
|
// 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
|
#define msgSend objc_msgSend
|
||||||
#else
|
#else
|
||||||
#define msgSend objc_msgSend_stret
|
#define msgSend objc_msgSend_stret
|
||||||
|
Loading…
x
Reference in New Issue
Block a user