show N64 menu in null emulator mode (no rom loaded), single instance mode - message box alerting the user that a reboot is required

This commit is contained in:
adelikat 2013-08-27 00:47:18 +00:00
parent dc39d9cbe7
commit 25a4ce52cf
2 changed files with 6 additions and 0 deletions

View File

@ -1184,6 +1184,8 @@ namespace BizHawk.MultiClient
private void singleInstanceModeToolStripMenuItem_Click(object sender, EventArgs e)
{
Global.Config.SingleInstanceMode ^= true;
MessageBox.Show("BizHawk must be restarted for this setting to take effect.", "Reboot Required", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
private void MainForm_Deactivate(object sender, EventArgs e)

View File

@ -815,6 +815,10 @@ namespace BizHawk.MultiClient
switch (system)
{
default:
case "NULL":
n64ToolStripMenuItem.Visible = true;
break;
case "TI83":
tI83ToolStripMenuItem.Visible = true;
break;