Fix controller settings not saving the Controller Pak plugin
This fixes issue #2019
This commit is contained in:
parent
9ad8d49d0e
commit
6d9c88f1e2
|
@ -171,6 +171,7 @@ LRESULT CControllerSettings::OnApply()
|
|||
Controller.DeadZone = (uint8_t)m_DeadZone.GetPos();
|
||||
CONTROL & ControlInfo = g_InputPlugin->ControlInfo(m_ControllerNumber);
|
||||
ControlInfo.Present = (m_PluggedIn.GetCheck() == BST_CHECKED) ? 1 : 0;
|
||||
ControlInfo.Plugin = m_ControlInfo.Plugin;
|
||||
return g_InputPlugin->SaveController(m_ControllerNumber) ? PSNRET_NOERROR : PSNRET_INVALID_NOCHANGEPAGE;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue