diff --git a/rpcs3/Emu/Cell/Modules/cellNetCtl.cpp b/rpcs3/Emu/Cell/Modules/cellNetCtl.cpp index 6f73da6e05..97375c4e6d 100644 --- a/rpcs3/Emu/Cell/Modules/cellNetCtl.cpp +++ b/rpcs3/Emu/Cell/Modules/cellNetCtl.cpp @@ -208,9 +208,7 @@ error_code cellNetCtlGetInfo(s32 code, vm::ptr info) if (code == CELL_NET_CTL_INFO_ETHER_ADDR) { - // Placeholder MAC address (locally administered: 02:00:00:00:00:01) - constexpr u8 placeholder_mac[6] = {0x02, 0x00, 0x00, 0x00, 0x00, 0x01}; - memcpy(info->ether_addr.data, placeholder_mac, 6); + memcpy(info->ether_addr.data, nph.get_ether_addr().data(), 6); return CELL_OK; }