yuzu: Use pad parameter to choose the correct controller
This commit is contained in:
parent
d05675242a
commit
873d26b335
2 changed files with 14 additions and 9 deletions
|
@ -389,7 +389,8 @@ std::vector<Common::ParamPackage> EmulatedController::GetMappedDevices(
|
||||||
devices.begin(), devices.end(), [param](const Common::ParamPackage param_) {
|
devices.begin(), devices.end(), [param](const Common::ParamPackage param_) {
|
||||||
return param.Get("engine", "") == param_.Get("engine", "") &&
|
return param.Get("engine", "") == param_.Get("engine", "") &&
|
||||||
param.Get("guid", "") == param_.Get("guid", "") &&
|
param.Get("guid", "") == param_.Get("guid", "") &&
|
||||||
param.Get("port", 0) == param_.Get("port", 0);
|
param.Get("port", 0) == param_.Get("port", 0) &&
|
||||||
|
param.Get("pad", 0) == param_.Get("pad", 0);
|
||||||
});
|
});
|
||||||
if (devices_it != devices.end()) {
|
if (devices_it != devices.end()) {
|
||||||
continue;
|
continue;
|
||||||
|
@ -398,6 +399,7 @@ std::vector<Common::ParamPackage> EmulatedController::GetMappedDevices(
|
||||||
device.Set("engine", param.Get("engine", ""));
|
device.Set("engine", param.Get("engine", ""));
|
||||||
device.Set("guid", param.Get("guid", ""));
|
device.Set("guid", param.Get("guid", ""));
|
||||||
device.Set("port", param.Get("port", 0));
|
device.Set("port", param.Get("port", 0));
|
||||||
|
device.Set("pad", param.Get("pad", 0));
|
||||||
devices.push_back(device);
|
devices.push_back(device);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -412,7 +414,8 @@ std::vector<Common::ParamPackage> EmulatedController::GetMappedDevices(
|
||||||
devices.begin(), devices.end(), [param](const Common::ParamPackage param_) {
|
devices.begin(), devices.end(), [param](const Common::ParamPackage param_) {
|
||||||
return param.Get("engine", "") == param_.Get("engine", "") &&
|
return param.Get("engine", "") == param_.Get("engine", "") &&
|
||||||
param.Get("guid", "") == param_.Get("guid", "") &&
|
param.Get("guid", "") == param_.Get("guid", "") &&
|
||||||
param.Get("port", 0) == param_.Get("port", 0);
|
param.Get("port", 0) == param_.Get("port", 0) &&
|
||||||
|
param.Get("pad", 0) == param_.Get("pad", 0);
|
||||||
});
|
});
|
||||||
if (devices_it != devices.end()) {
|
if (devices_it != devices.end()) {
|
||||||
continue;
|
continue;
|
||||||
|
@ -421,6 +424,7 @@ std::vector<Common::ParamPackage> EmulatedController::GetMappedDevices(
|
||||||
device.Set("engine", param.Get("engine", ""));
|
device.Set("engine", param.Get("engine", ""));
|
||||||
device.Set("guid", param.Get("guid", ""));
|
device.Set("guid", param.Get("guid", ""));
|
||||||
device.Set("port", param.Get("port", 0));
|
device.Set("port", param.Get("port", 0));
|
||||||
|
device.Set("pad", param.Get("pad", 0));
|
||||||
devices.push_back(device);
|
devices.push_back(device);
|
||||||
}
|
}
|
||||||
return devices;
|
return devices;
|
||||||
|
|
|
@ -747,15 +747,16 @@ void ConfigureInputPlayer::UpdateInputDeviceCombobox() {
|
||||||
const auto first_engine = devices[0].Get("engine", "");
|
const auto first_engine = devices[0].Get("engine", "");
|
||||||
const auto first_guid = devices[0].Get("guid", "");
|
const auto first_guid = devices[0].Get("guid", "");
|
||||||
const auto first_port = devices[0].Get("port", 0);
|
const auto first_port = devices[0].Get("port", 0);
|
||||||
|
const auto first_pad = devices[0].Get("pad", 0);
|
||||||
|
|
||||||
if (devices.size() == 1) {
|
if (devices.size() == 1) {
|
||||||
const auto devices_it =
|
const auto devices_it = std::find_if(
|
||||||
std::find_if(input_devices.begin(), input_devices.end(),
|
input_devices.begin(), input_devices.end(),
|
||||||
[first_engine, first_guid, first_port](const Common::ParamPackage param) {
|
[first_engine, first_guid, first_port, first_pad](const Common::ParamPackage param) {
|
||||||
return param.Get("engine", "") == first_engine &&
|
return param.Get("engine", "") == first_engine &&
|
||||||
param.Get("guid", "") == first_guid &&
|
param.Get("guid", "") == first_guid && param.Get("port", 0) == first_port &&
|
||||||
param.Get("port", 0) == first_port;
|
param.Get("pad", 0) == first_pad;
|
||||||
});
|
});
|
||||||
const int device_index =
|
const int device_index =
|
||||||
devices_it != input_devices.end()
|
devices_it != input_devices.end()
|
||||||
? static_cast<int>(std::distance(input_devices.begin(), devices_it))
|
? static_cast<int>(std::distance(input_devices.begin(), devices_it))
|
||||||
|
|
Loading…
Reference in a new issue