mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-22 12:34:55 +00:00
PadMappingDialog: Show player ID in player dropdown
Makes it easier to differentiate players that have the same name.
This commit is contained in:
parent
b26a47e642
commit
d797bf2ee7
1 changed files with 4 additions and 1 deletions
|
@ -56,7 +56,10 @@ int PadMappingDialog::exec()
|
|||
players.append(tr("None"));
|
||||
|
||||
for (const auto& player : m_players)
|
||||
players.append(QString::fromStdString(player->name));
|
||||
{
|
||||
players.append(
|
||||
QStringLiteral("%1 (%2)").arg(QString::fromStdString(player->name)).arg(player->pid));
|
||||
}
|
||||
|
||||
for (auto& combo_group : {m_gc_boxes, m_wii_boxes})
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue