Fix drag & drop of movie files

This commit is contained in:
adelikat 2012-03-31 15:34:31 +00:00
parent f3d098a390
commit 7e9085b46d
1 changed files with 1 additions and 1 deletions

View File

@ -772,7 +772,7 @@ namespace BizHawk.MultiClient
private bool IsValidMovieExtension(string ext)
{
return (ext.ToUpper() == ".TAS");
return (ext.ToUpper() == "." + Global.Config.MovieExtension);
}
private void FormDragDrop(object sender, DragEventArgs e)