mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2026-06-24 13:45:00 -06:00
Truly fixed log message this time
This commit is contained in:
parent
a36d12d3f4
commit
c2d1819609
@ -594,7 +594,9 @@ void NWM_UDS::RecvBeaconBroadcastData(Kernel::HLERequestContext& ctx) {
|
||||
|
||||
MacAddress mac_address;
|
||||
rp.PopRaw(mac_address);
|
||||
LOG_WARNING(Service_NWM, "MAC: {}", mac_address);
|
||||
LOG_WARNING(Service_NWM, "MAC: {02X}.{02X}.{02X}.{02X}.{02X}.{02X}",
|
||||
mac_address[0], mac_address[1], mac_address[2],
|
||||
mac_address[3], mac_address[4], mac_address[5]);
|
||||
|
||||
rp.Skip(9, false);
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user