From 33eed1daf0d82167f5e1adad1407edd41fbf7417 Mon Sep 17 00:00:00 2001 From: rusted-coil Date: Sat, 20 Jun 2020 11:02:52 +0900 Subject: [PATCH] =?UTF-8?q?=E9=8E=A7=E3=81=AE=E5=AD=A4=E5=B3=B6=E2=86=92?= =?UTF-8?q?=E9=80=9A=E5=B8=B8=E3=83=9E=E3=83=83=E3=83=97=E3=81=B8=E3=81=AE?= =?UTF-8?q?=E8=A1=A8=E7=A4=BA=E5=88=87=E3=82=8A=E6=9B=BF=E3=81=88=E3=81=8C?= =?UTF-8?q?=E3=81=A7=E3=81=8D=E3=81=A6=E3=81=84=E3=81=AA=E3=81=8B=E3=81=A3?= =?UTF-8?q?=E3=81=9F=E3=81=AE=E3=81=A7=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- OneStar/Form1.Designer.cs | 2 +- OneStar/Form1.cs | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/OneStar/Form1.Designer.cs b/OneStar/Form1.Designer.cs index 97371ed..e17f576 100644 --- a/OneStar/Form1.Designer.cs +++ b/OneStar/Form1.Designer.cs @@ -3158,7 +3158,7 @@ private void InitializeComponent() this.MainMenuStrip = this.menuStrip1; this.MaximizeBox = false; this.Name = "MainForm"; - this.Text = "1-Star Seed Search v1.08c"; + this.Text = "1-Star Seed Search v1.08d"; this.f_GroupBoxPokemon_1.ResumeLayout(false); this.f_GroupBoxPokemon_1.PerformLayout(); this.f_GroupBoxStatus1.ResumeLayout(false); diff --git a/OneStar/Form1.cs b/OneStar/Form1.cs index 71e64df..4414f96 100644 --- a/OneStar/Form1.cs +++ b/OneStar/Form1.cs @@ -1528,6 +1528,12 @@ void RefreshDen() // 本編レイド if (c_RaidData.GetRaidMap(m_CurrentDenIndex) == 0) { + if (m_CurrentMapId != 0) + { + DenMap.BackgroundImage.Dispose(); + DenMap.BackgroundImage = Properties.Resources.map; + m_CurrentMapId = 0; + } var location = c_RaidData.GetRaidLocation(m_CurrentDenIndex); f_PicturePoint.Location = new System.Drawing.Point(location.X - 5, location.Y - 5); f_PicturePoint.Visible = true;