From 62eddb6aec20d725c8e03dd06ff2cff5c520e471 Mon Sep 17 00:00:00 2001 From: Kurt Date: Sat, 21 Nov 2015 19:27:50 -0800 Subject: [PATCH] Misc fixes --- PKX/f1-Main.cs | 4 ++-- SAV/SAV_Database.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/PKX/f1-Main.cs b/PKX/f1-Main.cs index ed18b2e2f..0257bb0c6 100644 --- a/PKX/f1-Main.cs +++ b/PKX/f1-Main.cs @@ -2727,8 +2727,8 @@ private void setBoxNames() catch { CB_BoxSelect.Items.Clear(); - for (int i = 1; i < 31; i++) - CB_BoxSelect.Items.Add("Box " + i); + for (int i = 0; i < 31; i++) + CB_BoxSelect.Items.Add("Box " + (i+1)); } CB_BoxSelect.SelectedIndex = selectedbox; // restore selected box } diff --git a/SAV/SAV_Database.cs b/SAV/SAV_Database.cs index 387acdd55..0ff560ad7 100644 --- a/SAV/SAV_Database.cs +++ b/SAV/SAV_Database.cs @@ -209,7 +209,7 @@ private void clickSet(object sender, EventArgs e) // Refresh database view. L_Count.Text = String.Format(Counter, Results.Count); FillPKXBoxes(SCR_Box.Value); - Util.Alert("Added Pokémon from tabs to database", "Please refresh the search to ensure it shows up; it may be at the bottom of the results."); + Util.Alert("Added Pokémon from tabs to database.", "Please refresh the search to ensure it shows up; it may be at the bottom of the results."); } private void populateComboBoxes() {