Browse Source
Merge pull request #7583 from german77/triggered
core/hid: Fix faulty analog triggers
pull/15/merge
Ghost
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
src/core/hid/emulated_controller.cpp
|
|
|
@ -670,7 +670,7 @@ void EmulatedController::SetTrigger(const Common::Input::CallbackStatus& callbac |
|
|
|
const auto trigger_value = TransformToTrigger(callback); |
|
|
|
|
|
|
|
// Only read trigger values that have the same uuid or are pressed once
|
|
|
|
if (controller.stick_values[index].uuid != uuid) { |
|
|
|
if (controller.trigger_values[index].uuid != uuid) { |
|
|
|
if (!trigger_value.pressed.value) { |
|
|
|
return; |
|
|
|
} |
|
|
|
@ -686,7 +686,7 @@ void EmulatedController::SetTrigger(const Common::Input::CallbackStatus& callbac |
|
|
|
return; |
|
|
|
} |
|
|
|
|
|
|
|
const auto trigger = controller.trigger_values[index]; |
|
|
|
const auto& trigger = controller.trigger_values[index]; |
|
|
|
|
|
|
|
switch (index) { |
|
|
|
case Settings::NativeTrigger::LTrigger: |
|
|
|
|