another movie file extension fix
This commit is contained in:
parent
7e9085b46d
commit
f38073db5c
|
@ -215,7 +215,7 @@ namespace BizHawk.MultiClient
|
||||||
List<int> TAS = new List<int>();
|
List<int> TAS = new List<int>();
|
||||||
for (int x = 0; x < Indexes.Count; x++)
|
for (int x = 0; x < Indexes.Count; x++)
|
||||||
{
|
{
|
||||||
if (Path.GetExtension(MovieList[Indexes[x]].Filename).ToUpper() == ".TAS")
|
if (Path.GetExtension(MovieList[Indexes[x]].Filename).ToUpper() == "." + Global.Config.MovieExtension)
|
||||||
TAS.Add(x);
|
TAS.Add(x);
|
||||||
}
|
}
|
||||||
if (TAS.Count == 1)
|
if (TAS.Count == 1)
|
||||||
|
|
Loading…
Reference in New Issue