aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMai M <mathew1800@gmail.com>2022-01-17 13:43:11 -0500
committerGitHub <noreply@github.com>2022-01-17 13:43:11 -0500
commitcf4893410b94b6a0955f9c7a4551d16add428e04 (patch)
treeab23b83dc1b597c4823246760da73a262b7da90d
parent345bcd4cdffb495429ec8056c41029eacbcf6289 (diff)
parent8eddafd9d0c9a76eeecf5a83a5e855aab7bece4d (diff)
Merge pull request #7728 from v1993/patch-4
hid: fix std::transform call
-rw-r--r--src/core/hid/emulated_controller.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hid/emulated_controller.cpp b/src/core/hid/emulated_controller.cpp
index 13edb7332a..d12037b115 100644
--- a/src/core/hid/emulated_controller.cpp
+++ b/src/core/hid/emulated_controller.cpp
@@ -145,7 +145,7 @@ void EmulatedController::LoadDevices() {
motion_devices.begin(), Common::Input::CreateDevice<Common::Input::InputDevice>);
std::transform(trigger_params.begin(), trigger_params.end(), trigger_devices.begin(),
Common::Input::CreateDevice<Common::Input::InputDevice>);
- std::transform(battery_params.begin(), battery_params.begin(), battery_devices.end(),
+ std::transform(battery_params.begin(), battery_params.end(), battery_devices.begin(),
Common::Input::CreateDevice<Common::Input::InputDevice>);
std::transform(output_params.begin(), output_params.end(), output_devices.begin(),
Common::Input::CreateDevice<Common::Input::OutputDevice>);