Small amount of code cleanup - remove unnecessary code in mainform load function, move function to a better file
This commit is contained in:
parent
661565cf3e
commit
8714b6da75
|
@ -1179,15 +1179,6 @@ namespace BizHawk.MultiClient
|
|||
frameAdvanceSkipLagFramesToolStripMenuItem.Checked = Global.Config.SkipLagFrame;
|
||||
}
|
||||
|
||||
private void MainForm_Load(object sender, EventArgs e)
|
||||
{
|
||||
Text = "BizHawk" + (INTERIM ? " (interim) " : "");
|
||||
|
||||
//Hide platform specific menus until an appropriate ROM is loaded
|
||||
NESToolStripMenuItem.Visible = false;
|
||||
tI83ToolStripMenuItem.Visible = false;
|
||||
}
|
||||
|
||||
private void menuStrip1_MenuActivate(object sender, EventArgs e)
|
||||
{
|
||||
HandlePlatformMenus();
|
||||
|
|
|
@ -2872,5 +2872,9 @@ namespace BizHawk.MultiClient
|
|||
logWindowAsConsoleToolStripMenuItem.Enabled = true;
|
||||
}
|
||||
|
||||
private void MainForm_Load(object sender, EventArgs e)
|
||||
{
|
||||
Text = "BizHawk" + (INTERIM ? " (interim) " : "");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue