Skip to content

Commit b314971

Browse files
committed
mc.mitm: add temporary workaround for issue where wii controllers won't stop vibrating after being connected
1 parent 8ece58d commit b314971

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

mc_mitm/source/controllers/wii_controller.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ namespace ams::controller {
350350
}
351351

352352
Result WiiController::SetVibration(const SwitchRumbleData *rumble_data) {
353-
m_rumble_state = rumble_data->low_band_amp > 0 || rumble_data->high_band_amp > 0;
353+
m_rumble_state = rumble_data->high_band_amp > 0; //rumble_data->low_band_amp > 0 || rumble_data->high_band_amp > 0;
354354

355355
s_output_report.size = sizeof(WiiOutputReport0x10) + 1;
356356
auto report_data = reinterpret_cast<WiiReportData *>(s_output_report.data);

0 commit comments

Comments
 (0)