diff --git a/PKHeX/Saves/SaveUtil.cs b/PKHeX/Saves/SaveUtil.cs index f9e7dd022..4c77a0861 100644 --- a/PKHeX/Saves/SaveUtil.cs +++ b/PKHeX/Saves/SaveUtil.cs @@ -608,7 +608,7 @@ internal static void CheckHeaderFooter(ref byte[] input, ref byte[] header, ref if (dsv) { footer = input.Skip(SIZE_G4RAW).ToArray(); - input = input.Take(footer.Length).ToArray(); + input = input.Take(SIZE_G4RAW).ToArray(); } } if (input.Length == SIZE_G3BOXGCI)