From bb7fc4e793ad4807ded88bd8a22ee76002480607 Mon Sep 17 00:00:00 2001 From: ndeadly <24677491+ndeadly@users.noreply.github.com> Date: Fri, 16 Oct 2020 00:18:26 +0200 Subject: [PATCH] bluetooth-mitm: fix copy/paste error --- mc_mitm/source/controllers/emulated_switch_controller.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mc_mitm/source/controllers/emulated_switch_controller.cpp b/mc_mitm/source/controllers/emulated_switch_controller.cpp index a054d63..01c565d 100644 --- a/mc_mitm/source/controllers/emulated_switch_controller.cpp +++ b/mc_mitm/source/controllers/emulated_switch_controller.cpp @@ -181,7 +181,7 @@ namespace ams::controller { DecodeRumbleValues(report_data->output0x10.left_motor, &left_motor); SwitchRumbleData right_motor; - DecodeRumbleValues(report_data->output0x10.left_motor, &left_motor); + DecodeRumbleValues(report_data->output0x10.right_motor, &right_motor); return this->SetVibration(&left_motor, &right_motor); }