mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-04-18 21:37:26 -05:00
Fix default GBA Select binding on Linux
This commit is contained in:
parent
12935d5b25
commit
5af4fedd92
|
|
@ -100,9 +100,12 @@ void GBAPad::LoadDefaults(const ControllerInterface& ciface)
|
|||
#ifdef _WIN32
|
||||
m_buttons->SetControlExpression(4, "`BACK`"); // Select
|
||||
m_buttons->SetControlExpression(5, "`RETURN`"); // Start
|
||||
#else
|
||||
#elif defined __APPLE__
|
||||
m_buttons->SetControlExpression(4, "`Backspace`"); // Select
|
||||
m_buttons->SetControlExpression(5, "`Return`"); // Start
|
||||
#else
|
||||
m_buttons->SetControlExpression(4, "`BackSpace`"); // Select
|
||||
m_buttons->SetControlExpression(5, "`Return`"); // Start
|
||||
#endif
|
||||
|
||||
// D-Pad
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user