Disable Rewind & States menu item based on if the core is IStatable

This commit is contained in:
adelikat 2014-11-30 22:58:03 +00:00
parent 745b8f555b
commit 6c08847c38
1 changed files with 1 additions and 0 deletions

View File

@ -782,6 +782,7 @@ namespace BizHawk.Client.EmuHawk
private void ConfigSubMenu_DropDownOpened(object sender, EventArgs e)
{
ControllersMenuItem.Enabled = Global.Emulator.ControllerDefinition.Any();
RewindOptionsMenuItem.Enabled = Global.Emulator.HasSavestates();
}
private void FrameSkipMenuItem_DropDownOpened(object sender, EventArgs e)