Record movie - another slight simplification

This commit is contained in:
adelikat 2014-06-13 16:47:57 +00:00
parent 1ed4c93eea
commit 9f2dc300ea
1 changed files with 1 additions and 3 deletions

View File

@ -38,8 +38,6 @@ namespace BizHawk.Client.EmuHawk
{
path += "." + Global.MovieSession.Movie.PreferredExtension;
}
return path;
}
return path;
@ -48,7 +46,7 @@ namespace BizHawk.Client.EmuHawk
private void Ok_Click(object sender, EventArgs e)
{
var path = MakePath();
if (!String.IsNullOrWhiteSpace(path))
if (!string.IsNullOrWhiteSpace(path))
{
var test = new FileInfo(path);
if (test.Exists)