diff options
author | Valeri <v19930312@gmail.com> | 2022-01-17 10:47:38 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-17 10:47:38 +0300 |
commit | 8eddafd9d0c9a76eeecf5a83a5e855aab7bece4d (patch) | |
tree | b4d5cecb263847694fcc91b00214609cc8fe0d84 /src | |
parent | 480b03b6456b2fef81226c449493f6425e5137da (diff) |
hid: fix std::transform call
Found by static analysis with PVS-Studio.
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hid/emulated_controller.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hid/emulated_controller.cpp b/src/core/hid/emulated_controller.cpp index 13edb7332..d12037b11 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>); |