mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-20 17:35:46 +00:00
network, yuzu: Improve variable naming and style consistency
This commit is contained in:
parent
69e8e88fb7
commit
e937c85e5a
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