mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 04:53:08 +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…
Reference in a new issue