Play Movie - remove mc2 and fm2 from list, as they have to be imported now
This commit is contained in:
parent
e3b3879954
commit
2c7fa2e363
|
@ -52,7 +52,12 @@ namespace BizHawk.MultiClient
|
|||
private void Run()
|
||||
{
|
||||
ListView.SelectedIndexCollection indexes = MovieView.SelectedIndices;
|
||||
if (indexes.Count == 0) return;
|
||||
if (indexes.Count == 0)
|
||||
return;
|
||||
|
||||
//Import file if necessary
|
||||
|
||||
|
||||
Global.MainForm.StartNewMovie(MovieList[MovieView.SelectedIndices[0]], false);
|
||||
}
|
||||
|
||||
|
@ -265,10 +270,6 @@ namespace BizHawk.MultiClient
|
|||
|
||||
foreach (string f in Directory.GetFiles(d, "*.tas"))
|
||||
AddMovieToList(f);
|
||||
foreach (string f in Directory.GetFiles(d, "*.fm2"))
|
||||
AddMovieToList(f);
|
||||
foreach (string f in Directory.GetFiles(d, "*.mc2"))
|
||||
AddMovieToList(f);
|
||||
if (Global.Config.PlayMovie_ShowStateFiles)
|
||||
{
|
||||
foreach (string f in Directory.GetFiles(d, "*.state"))
|
||||
|
|
Loading…
Reference in New Issue