Selaa lähdekoodia

core/hid: Fix faulty analog triggers

Narr the Reg 4 vuotta sitten
vanhempi
commit
6aac5d4c27
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. 2 2
      src/core/hid/emulated_controller.cpp

+ 2 - 2
src/core/hid/emulated_controller.cpp

@@ -670,7 +670,7 @@ void EmulatedController::SetTrigger(const Common::Input::CallbackStatus& callbac
     const auto trigger_value = TransformToTrigger(callback);
     const auto trigger_value = TransformToTrigger(callback);
 
 
     // Only read trigger values that have the same uuid or are pressed once
     // 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) {
         if (!trigger_value.pressed.value) {
             return;
             return;
         }
         }
@@ -686,7 +686,7 @@ void EmulatedController::SetTrigger(const Common::Input::CallbackStatus& callbac
         return;
         return;
     }
     }
 
 
-    const auto trigger = controller.trigger_values[index];
+    const auto& trigger = controller.trigger_values[index];
 
 
     switch (index) {
     switch (index) {
     case Settings::NativeTrigger::LTrigger:
     case Settings::NativeTrigger::LTrigger: