Disable new movie import system, since I won't be attempting that seriously any time soon

This commit is contained in:
adelikat 2015-02-05 22:34:41 +00:00
parent 0ae3ec18d8
commit 6fb2599320
1 changed files with 7 additions and 7 deletions

View File

@ -74,13 +74,13 @@ namespace BizHawk.Client.Common
string ext = path != null ? Path.GetExtension(path).ToUpper() : string.Empty;
// TODO: reflect off the assembly and find an IMovieImporter with the appropriate ImportExtension metadata
if (ext == ".FM2")
{
var result = new Fm2Import().Import(path);
errorMsg = result.Errors.First();
warningMsg = result.Errors.First();
return result.Movie;
}
//if (ext == ".FM2")
//{
// var result = new Fm2Import().Import(path);
// errorMsg = result.Errors.First();
// warningMsg = result.Errors.First();
// return result.Movie;
//}
if (ext == ".PJM")
{