summaryrefslogtreecommitdiffstats
path: root/src/yuzu/multiplayer/client_room.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2022-10-01 23:53:36 +0200
committerGitHub <noreply@github.com>2022-10-01 23:53:36 +0200
commit2a752bbd646aefaedd5b2aa334710a48bb6fe907 (patch)
tree4513e36fa60db1ec1cdcef500088194030e61c83 /src/yuzu/multiplayer/client_room.cpp
parentMerge pull request #9009 from yuzu-emu/bunnei-move-deploy-linux.sh (diff)
parentAddress some review comments (diff)
downloadyuzu-2a752bbd646aefaedd5b2aa334710a48bb6fe907.tar
yuzu-2a752bbd646aefaedd5b2aa334710a48bb6fe907.tar.gz
yuzu-2a752bbd646aefaedd5b2aa334710a48bb6fe907.tar.bz2
yuzu-2a752bbd646aefaedd5b2aa334710a48bb6fe907.tar.lz
yuzu-2a752bbd646aefaedd5b2aa334710a48bb6fe907.tar.xz
yuzu-2a752bbd646aefaedd5b2aa334710a48bb6fe907.tar.zst
yuzu-2a752bbd646aefaedd5b2aa334710a48bb6fe907.zip
Diffstat (limited to 'src/yuzu/multiplayer/client_room.cpp')
-rw-r--r--src/yuzu/multiplayer/client_room.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/yuzu/multiplayer/client_room.cpp b/src/yuzu/multiplayer/client_room.cpp
index b34a8d004..caf34a414 100644
--- a/src/yuzu/multiplayer/client_room.cpp
+++ b/src/yuzu/multiplayer/client_room.cpp
@@ -97,8 +97,9 @@ void ClientRoomWindow::UpdateView() {
auto memberlist = member->GetMemberInformation();
ui->chat->SetPlayerList(memberlist);
const auto information = member->GetRoomInformation();
- setWindowTitle(QString(tr("%1 (%2/%3 members) - connected"))
+ setWindowTitle(QString(tr("%1 - %2 (%3/%4 members) - connected"))
.arg(QString::fromStdString(information.name))
+ .arg(QString::fromStdString(information.preferred_game.name))
.arg(memberlist.size())
.arg(information.member_slots));
ui->description->setText(QString::fromStdString(information.description));