diff --git a/PKHeX/Saves/Substructures/MemeCrypto.cs b/PKHeX/Saves/Substructures/MemeCrypto.cs index 71e013d3b..92e03f600 100644 --- a/PKHeX/Saves/Substructures/MemeCrypto.cs +++ b/PKHeX/Saves/Substructures/MemeCrypto.cs @@ -284,7 +284,7 @@ public static byte[] Resign(byte[] sav7, bool throwIfUnsupported = true) sha256.ComputeHash(ChecksumTable).CopyTo(newSig, 0); var memeSig = VerifyMemeData(CurSig); if (memeSig != null) - Array.Copy(memeSig, 0x20, newSig, 0, 0x60); + Array.Copy(memeSig, 0x20, newSig, 0x20, 0x60); SignMemeData(newSig).CopyTo(outSav, 0x6BB00); }