Browse Source
hid: fix std::transform call
Found by static analysis with PVS-Studio.
pull/15/merge
Valeri
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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>); |
|
|
|
|