summaryrefslogtreecommitdiffstats
path: root/src/yuzu
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2022-12-06 17:26:46 +0100
committerGitHub <noreply@github.com>2022-12-06 17:26:46 +0100
commitbbdb6d391e76845a9f2db57d05b2d0a85eeeba4e (patch)
tree14708267c324948a8164a19df7d992c764aaac27 /src/yuzu
parentMerge pull request #9386 from lioncash/init (diff)
parentemulated_controller: Remove unused parameter in GetMappedDevices() (diff)
downloadyuzu-bbdb6d391e76845a9f2db57d05b2d0a85eeeba4e.tar
yuzu-bbdb6d391e76845a9f2db57d05b2d0a85eeeba4e.tar.gz
yuzu-bbdb6d391e76845a9f2db57d05b2d0a85eeeba4e.tar.bz2
yuzu-bbdb6d391e76845a9f2db57d05b2d0a85eeeba4e.tar.lz
yuzu-bbdb6d391e76845a9f2db57d05b2d0a85eeeba4e.tar.xz
yuzu-bbdb6d391e76845a9f2db57d05b2d0a85eeeba4e.tar.zst
yuzu-bbdb6d391e76845a9f2db57d05b2d0a85eeeba4e.zip
Diffstat (limited to 'src/yuzu')
-rw-r--r--src/yuzu/configuration/configure_input_player.cpp3
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()) {