Record Movie dialog - fix bug where user selection in SaveFileDialog was not updating the filename textbox

This commit is contained in:
adelikat 2014-03-23 16:53:49 +00:00
parent a534c7b221
commit d44649bf82
1 changed files with 1 additions and 1 deletions

View File

@ -216,7 +216,7 @@ namespace BizHawk.Client.EmuHawk
if (result == DialogResult.OK
&& !String.IsNullOrWhiteSpace(sfd.FileName))
{
RecordBox.Text = filename;
RecordBox.Text = sfd.FileName;
}
}