Atari 2600 debugger - interim flag the menu item

This commit is contained in:
adelikat 2014-04-27 00:40:02 +00:00
parent ca6f993b7c
commit 9615ff7836
1 changed files with 10 additions and 0 deletions

View File

@ -3265,5 +3265,15 @@ namespace BizHawk.Client.EmuHawk
{ {
GlobalWin.Tools.Load<Atari2600Debugger>(); GlobalWin.Tools.Load<Atari2600Debugger>();
} }
private void AtariSubMenu_DropDownOpened(object sender, EventArgs e)
{
if (!VersionInfo.INTERIM)
{
Atari2600DebuggerMenuItem.Visible =
toolStripSeparator31.Visible =
false;
}
}
} }
} }