network, yuzu: Improve variable naming and style consistency
This commit is contained in:
parent
6b5667dfa5
commit
6a2dcc8b3d
14 changed files with 53 additions and 47 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue