Remove magic number

This commit is contained in:
Alex Forencich
2020-11-18 01:25:19 -08:00
parent f289b2453d
commit 08398185a3

View File

@@ -318,7 +318,7 @@ class GmiiSink(object):
odd = not odd odd = not odd
b = (n & 0x0F) << 4 | b >> 4 b = (n & 0x0F) << 4 | b >> 4
be |= e be |= e
if not sync and b == 0xD5: if not sync and b == EthPre.SFD:
odd = True odd = True
sync = True sync = True
if odd: if odd: