Play Movie - fix bug where dialog was not respecting the read-only checkbox

This commit is contained in:
adelikat 2014-03-23 16:14:22 +00:00
parent 59ae076df7
commit a534c7b221
1 changed files with 1 additions and 1 deletions

View File

@ -69,8 +69,8 @@ namespace BizHawk.Client.EmuHawk
private void OK_Click(object sender, EventArgs e)
{
Global.MovieSession.ReadOnly = ReadOnlyCheckBox.Checked;
Run();
Global.MovieSession.ReadOnly = ReadOnlyCheckBox.Checked;
Close();
}