Changed min and max of NumericUpDown from short to ushort

This commit is contained in:
Evan Dixon 2016-08-24 19:46:24 -05:00
parent 9fead34917
commit c83701805b

View file

@ -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,