mirror of
https://github.com/kwsch/PKHeX
synced 2025-02-17 13:58:33 +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)
|
if (dsv)
|
||||||
{
|
{
|
||||||
footer = input.Skip(SIZE_G4RAW).ToArray();
|
footer = input.Skip(SIZE_G4RAW).ToArray();
|
||||||
input = input.Take(footer.Length).ToArray();
|
input = input.Take(SIZE_G4RAW).ToArray();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (input.Length == SIZE_G3BOXGCI)
|
if (input.Length == SIZE_G3BOXGCI)
|
||||||
|
|
Loading…
Add table
Reference in a new issue