We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ece58d commit b314971Copy full SHA for b314971
1 file changed
mc_mitm/source/controllers/wii_controller.cpp
@@ -350,7 +350,7 @@ namespace ams::controller {
350
}
351
352
Result WiiController::SetVibration(const SwitchRumbleData *rumble_data) {
353
- m_rumble_state = rumble_data->low_band_amp > 0 || rumble_data->high_band_amp > 0;
+ m_rumble_state = rumble_data->high_band_amp > 0; //rumble_data->low_band_amp > 0 || rumble_data->high_band_amp > 0;
354
355
s_output_report.size = sizeof(WiiOutputReport0x10) + 1;
356
auto report_data = reinterpret_cast<WiiReportData *>(s_output_report.data);
0 commit comments