Skip to content

Commit

Permalink
DEV9: Move call to network backend reset
Browse files Browse the repository at this point in the history
SMAP_R_EMAC3_TxMODE1_L is unrelated to resetting the adapter
  • Loading branch information
TheLastRar authored and F0bes committed Oct 15, 2024
1 parent 18c492d commit 6b2dc7a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pcsx2/DEV9/smap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 6b2dc7a

Please sign in to comment.