From 42b1f81b8e4b92cbb2bcd1b1a86f729208f00a1c Mon Sep 17 00:00:00 2001 From: refractionpcsx2 Date: Wed, 24 Jun 2015 23:42:28 +0100 Subject: [PATCH] dev9ghzdrk: I've got a good idea, lets not match the host mac ;) --- plugins/dev9ghzdrk/pcap_io.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/dev9ghzdrk/pcap_io.cpp b/plugins/dev9ghzdrk/pcap_io.cpp index fe83b53199..457e4796ae 100644 --- a/plugins/dev9ghzdrk/pcap_io.cpp +++ b/plugins/dev9ghzdrk/pcap_io.cpp @@ -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;