Record Movie - remove the "Now" option if the core doesn't implement IStatable
This commit is contained in:
parent
ce3f7ae3ac
commit
bdccb6d400
|
@ -19,6 +19,15 @@ namespace BizHawk.Client.EmuHawk
|
||||||
public RecordMovie()
|
public RecordMovie()
|
||||||
{
|
{
|
||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
|
|
||||||
|
if (!Global.Emulator.HasSavestates())
|
||||||
|
{
|
||||||
|
StartFromCombo.Items.Remove(
|
||||||
|
StartFromCombo.Items
|
||||||
|
.OfType<object>()
|
||||||
|
.First(i => i.ToString()
|
||||||
|
.ToLower() == "now"));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private string MakePath()
|
private string MakePath()
|
||||||
|
|
Loading…
Reference in New Issue