mirror of https://github.com/PCSX2/pcsx2.git
Qt: Fix crash on clearing controller bindings
This commit is contained in:
parent
0f24048cd5
commit
324eb4d4bf
|
@ -197,8 +197,10 @@ void ControllerBindingWidget::onClearBindingsClicked()
|
||||||
|
|
||||||
if (m_dialog->isEditingGlobalSettings())
|
if (m_dialog->isEditingGlobalSettings())
|
||||||
{
|
{
|
||||||
auto lock = Host::GetSettingsLock();
|
{
|
||||||
PAD::ClearPortBindings(*Host::Internal::GetBaseSettingsLayer(), m_port_number);
|
auto lock = Host::GetSettingsLock();
|
||||||
|
PAD::ClearPortBindings(*Host::Internal::GetBaseSettingsLayer(), m_port_number);
|
||||||
|
}
|
||||||
Host::CommitBaseSettingChanges();
|
Host::CommitBaseSettingChanges();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue