network, yuzu: Improve variable naming and style consistency

This commit is contained in:
FearlessTobi
2022-07-25 17:08:20 +02:00
parent 6b5667dfa5
commit 6a2dcc8b3d
14 changed files with 53 additions and 47 deletions

View File

@ -98,14 +98,18 @@ void MultiplayerState::retranslateUi() {
status_text->setText(tr("Not Connected"));
}
if (lobby)
if (lobby) {
lobby->RetranslateUi();
if (host_room)
}
if (host_room) {
host_room->RetranslateUi();
if (client_room)
}
if (client_room) {
client_room->RetranslateUi();
if (direct_connect)
}
if (direct_connect) {
direct_connect->RetranslateUi();
}
}
void MultiplayerState::OnNetworkStateChanged(const Network::RoomMember::State& state) {