mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-09-10 08:15:50 -05:00
@@ -51,7 +51,7 @@ public SAV_BoxLayout(int box)
|
||||
CB_Unlocked.Items.Clear();
|
||||
for (int i = 0; i < SAV.BoxCount; i++)
|
||||
CB_Unlocked.Items.Add(i + 1);
|
||||
CB_Unlocked.SelectedIndex = SAV.BoxesUnlocked;
|
||||
CB_Unlocked.SelectedIndex = Math.Min(SAV.BoxCount - 1, SAV.BoxesUnlocked);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user