Tweak detection of pk6 party file

This commit is contained in:
Kaphotics 2016-07-03 18:27:12 -07:00
parent 1779420af1
commit 1e2ef19d9a

View file

@ -40,15 +40,16 @@ namespace PKHeX
case PKX.SIZE_6PARTY: // collision with PGT, same size.
if (BitConverter.ToUInt16(data, 0x4) != 0) // Bad Sanity?
return -1;
if (BitConverter.ToUInt32(data, 0x06) == PKX.getCHK(data))
return 6;
if (BitConverter.ToUInt16(data, 0x58) != 0) // Encrypted?
{
PKX.getCHK(data);
for (int i = data.Length - 0x10; i < data.Length; i++) // 0x10 of 00's at the end != PK6
if (data[i] != 0)
break;
return 6;
return 6;
return -1;
}
return -1;
return 6;
}
return -1;
}