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);
}
}