Record movie - fix default filename that I broke some commits ago

This commit is contained in:
adelikat 2012-11-22 03:55:51 +00:00
parent 2254bc7008
commit 952e7acaa0
1 changed files with 3 additions and 1 deletions

View File

@ -188,7 +188,9 @@ namespace BizHawk.MultiClient
private void RecordMovie_Load(object sender, EventArgs e)
{
RecordBox.Text = PathManager.FilesystemSafeName(Global.Game);
string name = PathManager.FilesystemSafeName(Global.Game);
name = Path.GetFileNameWithoutExtension(name);
RecordBox.Text = name;
StartFromCombo.SelectedIndex = 0;
DefaultAuthorCheckBox.Checked = Global.Config.UseDefaultAuthor;
if (Global.Config.UseDefaultAuthor)