mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 04:53:08 +00:00
Extended HOF and AdventureStart MinDate
Not tested with a real save, but if the seconds data structure used to populate the data is in fact signed, the year should be valid.
This commit is contained in:
parent
7c69682422
commit
95843378d2
1 changed files with 2 additions and 2 deletions
|
@ -1007,7 +1007,7 @@ namespace PKHeX
|
|||
this.CAL_HoFDate.Format = System.Windows.Forms.DateTimePickerFormat.Short;
|
||||
this.CAL_HoFDate.Location = new System.Drawing.Point(89, 72);
|
||||
this.CAL_HoFDate.MaxDate = new System.DateTime(2050, 12, 31, 0, 0, 0, 0);
|
||||
this.CAL_HoFDate.MinDate = new System.DateTime(2000, 1, 1, 0, 0, 0, 0);
|
||||
this.CAL_HoFDate.MinDate = new System.DateTime(1932, 1, 1, 0, 0, 0, 0);
|
||||
this.CAL_HoFDate.Name = "CAL_HoFDate";
|
||||
this.CAL_HoFDate.Size = new System.Drawing.Size(99, 20);
|
||||
this.CAL_HoFDate.TabIndex = 39;
|
||||
|
@ -1040,7 +1040,7 @@ namespace PKHeX
|
|||
this.CAL_AdventureStartDate.Format = System.Windows.Forms.DateTimePickerFormat.Short;
|
||||
this.CAL_AdventureStartDate.Location = new System.Drawing.Point(89, 35);
|
||||
this.CAL_AdventureStartDate.MaxDate = new System.DateTime(2050, 12, 31, 0, 0, 0, 0);
|
||||
this.CAL_AdventureStartDate.MinDate = new System.DateTime(2000, 1, 1, 0, 0, 0, 0);
|
||||
this.CAL_AdventureStartDate.MinDate = new System.DateTime(1932, 1, 1, 0, 0, 0, 0);
|
||||
this.CAL_AdventureStartDate.Name = "CAL_AdventureStartDate";
|
||||
this.CAL_AdventureStartDate.Size = new System.Drawing.Size(99, 20);
|
||||
this.CAL_AdventureStartDate.TabIndex = 35;
|
||||
|
|
Loading…
Reference in a new issue