diff options
author | Lioncash <mathew1800@gmail.com> | 2022-12-05 18:23:17 -0500 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2022-12-05 18:27:18 -0500 |
commit | e4a16f50eff470d9c87a32143e559716171f12b2 (patch) | |
tree | d082c473d8b98cdc25a2803531c20c5e849313b9 /src/yuzu/configuration/configure_input_player.cpp | |
parent | 87543b9dea9c7d5644269f5bbe1f278a54a84bea (diff) |
emulated_controller: Remove unused parameter in GetMappedDevices()
This isn't used, so it can be removed to make the function a little
nicer.
Diffstat (limited to 'src/yuzu/configuration/configure_input_player.cpp')
-rw-r--r-- | src/yuzu/configuration/configure_input_player.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/yuzu/configuration/configure_input_player.cpp b/src/yuzu/configuration/configure_input_player.cpp index ed21f4b92..b1575b0d3 100644 --- a/src/yuzu/configuration/configure_input_player.cpp +++ b/src/yuzu/configuration/configure_input_player.cpp @@ -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()) { |