mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-31 10:09:36 -06:00
Fixes Rumble Strength for XInput
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4933 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -295,7 +295,7 @@ void GCPadConfigDialog::ChangeSettings(wxCommandEvent& event)
|
||||
GCMapping[m_Page].Rumble = m_CheckRumble[m_Page]->IsChecked();
|
||||
break;
|
||||
case IDC_RUMBLE_STRENGTH:
|
||||
GCMapping[m_Page].RumbleStrength = m_RumbleStrength[m_Page]->GetSelection();
|
||||
GCMapping[m_Page].RumbleStrength = m_RumbleStrength[m_Page]->GetSelection() * 10;
|
||||
break;
|
||||
case IDC_TRIGGER_TYPE:
|
||||
GCMapping[m_Page].TriggerType = m_TriggerType[m_Page]->GetSelection();
|
||||
@ -341,7 +341,7 @@ void GCPadConfigDialog::UpdateGUI()
|
||||
m_ComboDiagonal[m_Page]->SetSelection((100 - GCMapping[m_Page].Diagonal) / 5);
|
||||
m_CheckS2C[m_Page]->SetValue(GCMapping[m_Page].bSquare2Circle);
|
||||
m_CheckRumble[m_Page]->SetValue(GCMapping[m_Page].Rumble);
|
||||
m_RumbleStrength[m_Page]->SetSelection(GCMapping[m_Page].RumbleStrength);
|
||||
m_RumbleStrength[m_Page]->SetSelection(GCMapping[m_Page].RumbleStrength / 10);
|
||||
m_TriggerType[m_Page]->SetSelection(GCMapping[m_Page].TriggerType);
|
||||
|
||||
m_Combo_StickSrc[m_Page]->SetSelection(GCMapping[m_Page].Stick.Main);
|
||||
|
Reference in New Issue
Block a user