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:
parent
dc39d9cbe7
commit
25a4ce52cf
|
@ -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)
|
||||
|
|
|
@ -815,6 +815,10 @@ namespace BizHawk.MultiClient
|
|||
|
||||
switch (system)
|
||||
{
|
||||
default:
|
||||
case "NULL":
|
||||
n64ToolStripMenuItem.Visible = true;
|
||||
break;
|
||||
case "TI83":
|
||||
tI83ToolStripMenuItem.Visible = true;
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue