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:
parent
8e689dae76
commit
5b2b1cf13b
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue