From 1221b5c2719507ca682d72067c488ceed673cc53 Mon Sep 17 00:00:00 2001 From: TheLastRar Date: Sat, 6 Mar 2021 21:44:47 +0000 Subject: [PATCH] DEV9: Add message in pcap GetMACAddress() for unsupported OS --- pcsx2/DEV9/pcap_io.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pcsx2/DEV9/pcap_io.cpp b/pcsx2/DEV9/pcap_io.cpp index 20b0a5542f..e696ba81f1 100644 --- a/pcsx2/DEV9/pcap_io.cpp +++ b/pcsx2/DEV9/pcap_io.cpp @@ -135,6 +135,8 @@ int GetMACAddress(char* adapter, mac_address* addr) SysMessage("Could not get MAC address for adapter: %s", adapter); } close(fd); +#else + SysMessage("Could not get MAC address for adapter, OS not supported"); #endif return retval; }