Record Movie - remove the "Now" option if the core doesn't implement IStatable

This commit is contained in:
adelikat 2014-11-30 17:37:22 +00:00
parent ce3f7ae3ac
commit bdccb6d400
1 changed files with 9 additions and 0 deletions

View File

@ -19,6 +19,15 @@ namespace BizHawk.Client.EmuHawk
public RecordMovie()
{
InitializeComponent();
if (!Global.Emulator.HasSavestates())
{
StartFromCombo.Items.Remove(
StartFromCombo.Items
.OfType<object>()
.First(i => i.ToString()
.ToLower() == "now"));
}
}
private string MakePath()