mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-14 00:07:15 +00:00
Encrypt initialization data for dropping
Click event can happen before this data is loaded, so just in case we start with it encrypted instead of decrypted. Thanks Slashmolder for finding this!
This commit is contained in:
parent
23f62818c7
commit
3aed3ac262
1 changed files with 1 additions and 1 deletions
|
@ -6228,7 +6228,7 @@ namespace PKHeX
|
|||
if (e.Data != null)
|
||||
e.Effect = DragDropEffects.Move;
|
||||
}
|
||||
private byte[] pkm_from = new Byte[0xE8];
|
||||
private byte[] pkm_from = PKX.encryptArray(new Byte[0xE8]);
|
||||
private int pkm_from_offset = 0;
|
||||
private void L_Save_Click(object sender, EventArgs e)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue