Bigger hammer fix for drag & drop of movie files

This commit is contained in:
adelikat 2012-04-02 00:47:52 +00:00
parent a22a2fa3dc
commit a18b700664
1 changed files with 8 additions and 1 deletions

View File

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