1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-09-01 00:46:32 -05:00

core/hid: Fix controller type validation

This commit is contained in:
german77
2021-12-29 22:15:08 -06:00
parent 292dfac25e
commit 9ee5c4ec56
5 changed files with 23 additions and 17 deletions

View File

@@ -33,7 +33,7 @@ void UpdateController(Core::HID::EmulatedController* controller,
}
controller->SetNpadStyleIndex(controller_type);
if (connected) {
controller->Connect();
controller->Connect(true);
}
}