From 8a2307feb4c607923a5433ad935adb90bcd471ed Mon Sep 17 00:00:00 2001 From: "andres.delikat" Date: Mon, 17 Jan 2011 04:24:05 +0000 Subject: [PATCH] Make Close ROM menu item enabled only if Global Emulator is not a Null Emulator --- BizHawk.MultiClient/MainForm.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/BizHawk.MultiClient/MainForm.cs b/BizHawk.MultiClient/MainForm.cs index 69f4ca5da9..b5cf6dcf19 100644 --- a/BizHawk.MultiClient/MainForm.cs +++ b/BizHawk.MultiClient/MainForm.cs @@ -595,6 +595,11 @@ namespace BizHawk.MultiClient private void fileToolStripMenuItem_DropDownOpened(object sender, EventArgs e) { + if (Global.Emulator is NullEmulator) + closeROMToolStripMenuItem.Enabled = false; + else + closeROMToolStripMenuItem.Enabled = true; + if (AutoLoadMostRecentRom == true) autoloadMostRecentToolStripMenuItem.Checked = true; else