Let the program handle genderless pkm on load

Previously a Male Arceus would load (gender 0 = male), just have the
program handle the gender/species.
This commit is contained in:
Kaphotics 2016-04-02 14:03:04 -07:00
parent b0ccfe6a09
commit cf7ca51d83

View file

@ -958,13 +958,13 @@ namespace PKHeX
{
// Now that the ComboBoxes are ready, load the data.
fieldsInitialized = true;
pk6.Species = 493;
pk6.Move1 = 1;
pk6.RefreshChecksum();
// Load Data
populateFields(pk6);
{
CB_Species.SelectedValue = 493;
CB_Move1.SelectedValue = 1;
TB_OT.Text = "PKHeX";
TB_TID.Text = 12345.ToString();
TB_SID.Text = 54321.ToString();