From b9b2292a3fb6a9e0993b63c5c6e834de27ffaa7a Mon Sep 17 00:00:00 2001 From: goyuken Date: Sun, 7 Oct 2012 00:00:23 +0000 Subject: [PATCH] restore recently lost behavior where the system-specific mainform menu is called "SGB" when running SGB instead of SNES. this involves no changes to internal passed IDs --- BizHawk.MultiClient/MainForm.cs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/BizHawk.MultiClient/MainForm.cs b/BizHawk.MultiClient/MainForm.cs index c64d66e729..964c7ab5f0 100644 --- a/BizHawk.MultiClient/MainForm.cs +++ b/BizHawk.MultiClient/MainForm.cs @@ -1190,12 +1190,11 @@ namespace BizHawk.MultiClient atariToolStripMenuItem.Visible = true; break; case "SNES": - sNESToolStripMenuItem.Text = "&SNES"; - sNESToolStripMenuItem.Visible = true; - break; case "SGB": - if((Global.Emulator as LibsnesCore).IsSGB) + if ((Global.Emulator as LibsnesCore).IsSGB) sNESToolStripMenuItem.Text = "&SGB"; + else + sNESToolStripMenuItem.Text = "&SNES"; sNESToolStripMenuItem.Visible = true; break; default: