From 79cb35daa6562c0ee543eaf95d2c6befb768925e Mon Sep 17 00:00:00 2001 From: RipleyTom Date: Mon, 18 May 2026 11:14:41 +0000 Subject: [PATCH] Fix ethernet addr in offline mode (#18756) --- rpcs3/Emu/NP/np_handler.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/NP/np_handler.h b/rpcs3/Emu/NP/np_handler.h index 7e43bbf3cd..575fe68941 100644 --- a/rpcs3/Emu/NP/np_handler.h +++ b/rpcs3/Emu/NP/np_handler.h @@ -420,7 +420,7 @@ namespace np // IP & DNS info std::string hostname = "localhost"; - std::array ether_address{}; + std::array ether_address{0xFF,0xFF,0xFF,0xFF,0xFF,0xFF}; be_t local_ip_addr{}; be_t public_ip_addr{}; be_t dns_ip = 0x08080808;