Disable new movie import system, since I won't be attempting that seriously any time soon
This commit is contained in:
parent
0ae3ec18d8
commit
6fb2599320
|
@ -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")
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue