mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
Fix the nogui build on linux. The software plugin config dialog should not be built.
Fix the default wiimote emulation mouse button settings on linux. Fix a little c++ operator precedence issue. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6534 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -851,8 +851,13 @@ void Wiimote::LoadDefaults(const ControllerInterface& ciface)
|
||||
// TODO: finish this
|
||||
|
||||
// Buttons
|
||||
#ifdef __linux__
|
||||
set_control(m_buttons, 0, "Click 1"); // A
|
||||
set_control(m_buttons, 1, "Click 3"); // B
|
||||
#else
|
||||
set_control(m_buttons, 0, "Click 0"); // A
|
||||
set_control(m_buttons, 1, "Click 1"); // B
|
||||
#endif
|
||||
//set_control(m_buttons, 2, ""); // 1
|
||||
//set_control(m_buttons, 3, ""); // 2
|
||||
//set_control(m_buttons, 4, ""); // -
|
||||
|
Reference in New Issue
Block a user