summaryrefslogtreecommitdiffstats
path: root/src/core/hid/emulated_controller.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2022-12-06 00:23:17 +0100
committerLioncash <mathew1800@gmail.com>2022-12-06 00:27:18 +0100
commite4a16f50eff470d9c87a32143e559716171f12b2 (patch)
treed082c473d8b98cdc25a2803531c20c5e849313b9 /src/core/hid/emulated_controller.cpp
parentemulated_controller: Use std::move() in GetMappedDevices() (diff)
downloadyuzu-e4a16f50eff470d9c87a32143e559716171f12b2.tar
yuzu-e4a16f50eff470d9c87a32143e559716171f12b2.tar.gz
yuzu-e4a16f50eff470d9c87a32143e559716171f12b2.tar.bz2
yuzu-e4a16f50eff470d9c87a32143e559716171f12b2.tar.lz
yuzu-e4a16f50eff470d9c87a32143e559716171f12b2.tar.xz
yuzu-e4a16f50eff470d9c87a32143e559716171f12b2.tar.zst
yuzu-e4a16f50eff470d9c87a32143e559716171f12b2.zip
Diffstat (limited to '')
-rw-r--r--src/core/hid/emulated_controller.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/hid/emulated_controller.cpp b/src/core/hid/emulated_controller.cpp
index 09f870eb0..67969e938 100644
--- a/src/core/hid/emulated_controller.cpp
+++ b/src/core/hid/emulated_controller.cpp
@@ -424,8 +424,7 @@ void EmulatedController::RestoreConfig() {
ReloadFromSettings();
}
-std::vector<Common::ParamPackage> EmulatedController::GetMappedDevices(
- EmulatedDeviceIndex device_index) const {
+std::vector<Common::ParamPackage> EmulatedController::GetMappedDevices() const {
std::vector<Common::ParamPackage> devices;
for (const auto& param : button_params) {
if (!param.Has("engine")) {