mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
Fixed file size being altered when loading a dsv save (#316)
This commit is contained in:
parent
43c036641d
commit
ab413b4ddc
1 changed files with 1 additions and 1 deletions
|
@ -608,7 +608,7 @@ namespace PKHeX
|
|||
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)
|
||||
|
|
Loading…
Reference in a new issue