mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 14:30:56 +00:00
Fix invalid checksum detection when populating
This commit is contained in:
parent
a2f21e129f
commit
85696a9210
1 changed files with 4 additions and 3 deletions
|
@ -1053,7 +1053,7 @@ namespace PKHeX
|
||||||
Label_Gender.Text = gendersymbols[genderflag];
|
Label_Gender.Text = gendersymbols[genderflag];
|
||||||
updateStats();
|
updateStats();
|
||||||
setIsShiny();
|
setIsShiny();
|
||||||
if (init)
|
// if (init)
|
||||||
if (!PKX.verifychk(buff))
|
if (!PKX.verifychk(buff))
|
||||||
Util.Alert("PKX File has an invalid checksum.");
|
Util.Alert("PKX File has an invalid checksum.");
|
||||||
|
|
||||||
|
@ -2598,6 +2598,7 @@ namespace PKHeX
|
||||||
openQuick(((string[])e.Data.GetData(DataFormats.FileDrop))[0]);
|
openQuick(((string[])e.Data.GetData(DataFormats.FileDrop))[0]);
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region //// SAVE FILE FUNCTIONS ////
|
#region //// SAVE FILE FUNCTIONS ////
|
||||||
// Integrity Checks //
|
// Integrity Checks //
|
||||||
private void clickVerifyCHK(object sender, EventArgs e)
|
private void clickVerifyCHK(object sender, EventArgs e)
|
||||||
|
|
Loading…
Reference in a new issue