mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-11 07:04:16 +00:00
Cleanup
This commit is contained in:
parent
f206fb60c5
commit
4a6ea19a31
2 changed files with 2 additions and 2 deletions
|
@ -170,8 +170,7 @@ namespace PKHeX.Core
|
|||
return _pk;
|
||||
byte[] ekdata = new byte[PKX.SIZE_4PARTY];
|
||||
Array.Copy(Data, 8, ekdata, 0, ekdata.Length);
|
||||
bool empty = ekdata.SequenceEqual(new byte[ekdata.Length]);
|
||||
return _pk = new PK4(empty || BitConverter.ToUInt32(ekdata, 0x64) == 0 ? ekdata : PKX.DecryptArray45(ekdata));
|
||||
return _pk = new PK4(ekdata);
|
||||
}
|
||||
set
|
||||
{
|
||||
|
|
|
@ -1412,6 +1412,7 @@
|
|||
//
|
||||
this.CB_Format.Anchor = System.Windows.Forms.AnchorStyles.Left;
|
||||
this.CB_Format.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
||||
this.CB_Format.DropDownWidth = 100;
|
||||
this.CB_Format.FormattingEnabled = true;
|
||||
this.CB_Format.Items.AddRange(new object[] {
|
||||
"Any",
|
||||
|
|
Loading…
Reference in a new issue