emulated_controller: Remove unused parameter in GetMappedDevices()

This isn't used, so it can be removed to make the function a little
nicer.
This commit is contained in:
Lioncash
2022-12-05 18:23:17 -05:00
parent 87543b9dea
commit e4a16f50ef
3 changed files with 3 additions and 5 deletions

View File

@ -855,8 +855,7 @@ void ConfigureInputPlayer::UpdateInputDeviceCombobox() {
return;
}
const auto devices =
emulated_controller->GetMappedDevices(Core::HID::EmulatedDeviceIndex::AllDevices);
const auto devices = emulated_controller->GetMappedDevices();
UpdateInputDevices();
if (devices.empty()) {