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
This commit is contained in:
parent
329ca16bdf
commit
b9b2292a3f
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue