another movie file extension fix

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

View File

@ -215,7 +215,7 @@ namespace BizHawk.MultiClient
List<int> TAS = new List<int>();
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);
}
if (TAS.Count == 1)