Fix drag & drop of movie files
This commit is contained in:
parent
f3d098a390
commit
7e9085b46d
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue