mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-25 07:21:14 +01:00
WiimoteEmu: check for __APPLE__ with defined()
This is only defined on certain platforms and isn't always defined.
This commit is contained in:
parent
3c64d030c5
commit
a9f89a7d3b
@ -694,7 +694,7 @@ void Wiimote::LoadDefaults(const ControllerInterface& ciface)
|
||||
m_buttons->SetControlExpression(0, "`Click 1`");
|
||||
// B
|
||||
m_buttons->SetControlExpression(1, "`Click 3`");
|
||||
#elif __APPLE__
|
||||
#elif defined(__APPLE__)
|
||||
// A
|
||||
m_buttons->SetControlExpression(0, "`Left Click`");
|
||||
// B
|
||||
|
Loading…
x
Reference in New Issue
Block a user