mirror of https://github.com/PCSX2/pcsx2.git
Merge pull request #120 from lioncash/dev9ghzdrk
DEV9ghzdrk: Clarify precedence for a bitwise AND in smap.
This commit is contained in:
commit
764ca25f8d
|
@ -252,7 +252,7 @@ void emac3_write(u32 addr)
|
|||
DEV9_LOG("SMAP: SMAP_R_EMAC3_TxMODE0_L write %x\n", value);
|
||||
//spams// emu_printf("SMAP: SMAP_R_EMAC3_TxMODE0_L write %x\n", value);
|
||||
//Process TX here ?
|
||||
if (!value&SMAP_E3_TX_GNP_0)
|
||||
if (!(value & SMAP_E3_TX_GNP_0))
|
||||
emu_printf("SMAP_R_EMAC3_TxMODE0_L: SMAP_E3_TX_GNP_0 not set\n");
|
||||
|
||||
tx_process();
|
||||
|
|
Loading…
Reference in New Issue