From 6b2dc7a68c629ac7fc0770c30501ca78590cb0c4 Mon Sep 17 00:00:00 2001 From: TheLastRar Date: Sat, 12 Oct 2024 22:04:00 +0100 Subject: [PATCH] DEV9: Move call to network backend reset SMAP_R_EMAC3_TxMODE1_L is unrelated to resetting the adapter --- pcsx2/DEV9/smap.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pcsx2/DEV9/smap.cpp b/pcsx2/DEV9/smap.cpp index c2f552f187..5966349ce2 100644 --- a/pcsx2/DEV9/smap.cpp +++ b/pcsx2/DEV9/smap.cpp @@ -287,6 +287,10 @@ void emac3_write(u32 addr) switch (reg) { case SMAP_DsPHYTER_BMCR: + if (val & SMAP_PHY_BMCR_RST) + { + ad_reset(); + } val &= ~SMAP_PHY_BMCR_RST; val |= 0x1; break;