mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-08-28 06:35:37 -05:00
Changed min and max of NumericUpDown from short to ushort
This commit is contained in:
@@ -171,8 +171,8 @@ private void addConstList(string[] list)
|
||||
};
|
||||
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,
|
||||
|
||||
Reference in New Issue
Block a user