mirror of
https://github.com/azahar-emu/azahar
synced 2025-11-17 04:19:59 +01:00
Remove useless static cast
This commit is contained in:
parent
1f87766b86
commit
878217372b
@ -32,7 +32,7 @@ void Init() {
|
|||||||
|
|
||||||
if (auto room_member = Network::GetRoomMember().lock()) {
|
if (auto room_member = Network::GetRoomMember().lock()) {
|
||||||
if (room_member->IsConnected()) {
|
if (room_member->IsConnected()) {
|
||||||
mac = static_cast<SharedPage::MacAddress>(room_member->GetMacAddress());
|
mac = room_member->GetMacAddress();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
SharedPage::SetMacAddress(mac);
|
SharedPage::SetMacAddress(mac);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user