From 3e73f80c07599ef4f021ecf674245d62a2713776 Mon Sep 17 00:00:00 2001 From: Joel Gallant Date: Wed, 21 Jan 2026 10:50:04 -0400 Subject: [PATCH] Revert "monkey-patch: placeholder valid mac address returned to game" This reverts commit b65c4519d340cddc4495a9206fee50c7c2f5628d. --- rpcs3/Emu/Cell/Modules/cellNetCtl.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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; }