mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 16:48:01 +00:00
Fix HoF size check
now matches the code in ChecksumsValid (< instead of <=)
This commit is contained in:
parent
9b783dd047
commit
ee787a0f71
1 changed files with 1 additions and 1 deletions
|
@ -288,7 +288,7 @@ namespace PKHeX.Core
|
|||
BitConverter.GetBytes(chk).CopyTo(Data, ofs + 0xFF6);
|
||||
}
|
||||
|
||||
if (BAK.Length <= SaveUtil.SIZE_G3RAW) // don't update HoF for half-sizes
|
||||
if (BAK.Length < SaveUtil.SIZE_G3RAW) // don't update HoF for half-sizes
|
||||
return;
|
||||
|
||||
// Hall of Fame Checksums
|
||||
|
|
Loading…
Reference in a new issue