early-access version 2255
This commit is contained in:
parent
b159b8b7aa
commit
b1eaaf2a50
2 changed files with 4 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
yuzu emulator early access
|
||||
=============
|
||||
|
||||
This is the source code for early-access 2254.
|
||||
This is the source code for early-access 2255.
|
||||
|
||||
## Legal Notice
|
||||
|
||||
|
|
|
@ -215,6 +215,9 @@ QtControllerSelectorDialog::QtControllerSelectorDialog(
|
|||
// If all the parameters are met AND only allows a single player,
|
||||
// stop the constructor here as we do not need to continue.
|
||||
if (CheckIfParametersMet() && parameters.enable_single_mode) {
|
||||
for (std::size_t player_index = 0; player_index < NUM_PLAYERS; ++player_index) {
|
||||
system.HIDCore().GetEmulatedControllerByIndex(player_index)->DisableConfiguration();
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue