Enable SNES and GBA gpu view on linux

I tested the SNES one and it seemed to work.  Don't have any working GBA cores right now in linux, I think?  But no reason to expect it wouldn't work
This commit is contained in:
nattthebear 2020-06-15 10:49:17 -04:00
parent 8e689dae76
commit 5b2b1cf13b
1 changed files with 2 additions and 2 deletions

View File

@ -1716,7 +1716,7 @@ namespace BizHawk.Client.EmuHawk
private void GBASubMenu_DropDownOpened(object sender, EventArgs e)
{
GbaGpuViewerMenuItem.Enabled = !OSTailoredCode.IsUnixHost;
GbaGpuViewerMenuItem.Enabled = true;
}
private void NDSSubMenu_DropDownOpened(object sender, EventArgs e)
@ -1781,7 +1781,7 @@ namespace BizHawk.Client.EmuHawk
private void SnesSubMenu_DropDownOpened(object sender, EventArgs e)
{
SNESControllerConfigurationMenuItem.Enabled = MovieSession.Movie.NotActive();
SnesGfxDebuggerMenuItem.Enabled = !OSTailoredCode.IsUnixHost;
SnesGfxDebuggerMenuItem.Enabled = true;
}
private void SNESControllerConfigurationMenuItem_Click(object sender, EventArgs e)