dev9ghzdrk: I've got a good idea, lets not match the host mac ;)

This commit is contained in:
refractionpcsx2 2015-06-24 23:42:28 +01:00
parent cc6ebff48e
commit 42b1f81b8e
1 changed files with 3 additions and 3 deletions

View File

@ -97,9 +97,9 @@ int pcap_io_init(char *adapter)
virtual_mac.bytes[0] = host_mac.bytes[0];
virtual_mac.bytes[1] = host_mac.bytes[1];
virtual_mac.bytes[2] = host_mac.bytes[2];
virtual_mac.bytes[3] = host_mac.bytes[3];
virtual_mac.bytes[4] = host_mac.bytes[4];
virtual_mac.bytes[5] = host_mac.bytes[5];
virtual_mac.bytes[3] = host_mac.bytes[2];
virtual_mac.bytes[4] = host_mac.bytes[5];
virtual_mac.bytes[5] = host_mac.bytes[4];
//The checksum seems to be all the values of the mac added up in 16bit chunks
checksum = dev9.eeprom[0] + dev9.eeprom[1] + dev9.eeprom[2] & 0xffff;