InputManager: Remove unused pointer type

This commit is contained in:
Stenzek
2024-08-24 14:23:32 +10:00
parent f0deab2131
commit 9dd83c4f9f
7 changed files with 9 additions and 12 deletions

View File

@ -269,7 +269,7 @@ void InputBindingDialog::saveListToSettings()
else
Host::DeleteBaseSettingValue(m_section_name.c_str(), m_key_name.c_str());
Host::CommitBaseSettingChanges();
if (m_bind_type == InputBindingInfo::Type::Pointer || m_bind_type == InputBindingInfo::Type::AbsolutePointer)
if (m_bind_type == InputBindingInfo::Type::Pointer)
g_emu_thread->updateControllerSettings();
g_emu_thread->reloadInputBindings();
}