Skip to content

Commit

Permalink
鎧の孤島→通常マップへの表示切り替えができていなかったので修正
Browse files Browse the repository at this point in the history
  • Loading branch information
rusted-coil committed Jun 20, 2020
1 parent 8211d4b commit 33eed1d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion OneStar/Form1.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions OneStar/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 33eed1d

Please sign in to comment.