mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 22:40:22 +00:00
Merge pull request #198 from kwsch/b/event-flags-signed-unsigned
Changed min and max of NumericUpDown from short to ushort
This commit is contained in:
commit
4a8ed41d26
1 changed files with 2 additions and 2 deletions
|
@ -171,8 +171,8 @@ namespace PKHeX
|
|||
};
|
||||
var mtb = new NumericUpDown
|
||||
{
|
||||
Maximum = short.MaxValue,
|
||||
Minimum = short.MinValue,
|
||||
Maximum = ushort.MaxValue,
|
||||
Minimum = ushort.MinValue,
|
||||
Value = Constants[num[i]],
|
||||
Name = constTag + num[i].ToString("0000"),
|
||||
Margin = Padding.Empty,
|
||||
|
|
Loading…
Reference in a new issue