From 599ec4ed45ea8f81e8369f3260bfa5a1e8b14f4b Mon Sep 17 00:00:00 2001 From: Kurt Date: Fri, 5 Jul 2019 11:57:40 -0700 Subject: [PATCH] Fix checksum offset fetch #2348 --- PKHeX.Core/Saves/SAV7b.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PKHeX.Core/Saves/SAV7b.cs b/PKHeX.Core/Saves/SAV7b.cs index e99e51997..31c7c137f 100644 --- a/PKHeX.Core/Saves/SAV7b.cs +++ b/PKHeX.Core/Saves/SAV7b.cs @@ -96,7 +96,7 @@ private void Initialize() public BlockInfo GetBlock(BelugaBlockIndex index) => Blocks[(int)index]; public int GetBlockOffset(BelugaBlockIndex index) => GetBlock(index).Offset; - private const int boGG = 0xB8800; // nowhere near 1MB (savedata.bin size) + private const int boGG = 0xB8800 - 0x200; // nowhere near 1MB (savedata.bin size) private static readonly BlockInfo[] BlockInfoGG = {