1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-09-06 22:36:31 -05:00

yuzu: config: Vibrate the controller while configuring vibration strength

This commit is contained in:
Narr the Reg
2022-02-02 14:53:15 -06:00
parent 79e8f4abe8
commit 694c078655
5 changed files with 95 additions and 8 deletions

View File

@@ -164,7 +164,7 @@ void ConfigureInput::Initialize(InputCommon::InputSubsystem* input_subsystem,
});
connect(ui->vibrationButton, &QPushButton::clicked,
[this] { CallConfigureDialog<ConfigureVibration>(*this); });
[this, &hid_core] { CallConfigureDialog<ConfigureVibration>(*this, hid_core); });
connect(ui->motionButton, &QPushButton::clicked, [this, input_subsystem] {
CallConfigureDialog<ConfigureMotionTouch>(*this, input_subsystem);