mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-21 03:54:57 +00:00
DolphinAnalytics: Use #ifdef instead of #if for platform testing
This commit is contained in:
parent
4ccc5178a6
commit
258161bab7
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue