mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-19 17:37:52 -05:00
network, yuzu: Improve variable naming and style consistency
This commit is contained in:
@ -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) {
|
||||
|
Reference in New Issue
Block a user