another small Movies 2.0 todo
This commit is contained in:
parent
d816b1ed20
commit
18d0a59869
|
@ -40,6 +40,16 @@ namespace BizHawk.Client.Common
|
|||
}
|
||||
}
|
||||
|
||||
public static bool IsValidMovieExtension(string ext)
|
||||
{
|
||||
if (MovieExtensions.Contains(ext.ToLower().Replace(".", "")))
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Creates a default instance of the default implementation,
|
||||
/// no path is specified so this is in a minimal state that would not be able to be saved
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.IO;
|
||||
|
||||
using BizHawk.Emulation.Common;
|
||||
|
@ -31,21 +33,6 @@ namespace BizHawk.Client.Common
|
|||
}
|
||||
}
|
||||
|
||||
public static bool IsValidMovieExtension(string ext)
|
||||
{
|
||||
// Movies 2.0 TODO
|
||||
if (ext.ToUpper() == "." + Global.MovieSession.Movie.PreferredExtension)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
else if (ext.ToUpper() == ".TAS" || ext.ToUpper() == ".BKM")
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
public void LatchMultitrackPlayerInput(IController playerSource, MultitrackRewiringControllerAdapter rewiredSource)
|
||||
{
|
||||
if (_multiTrack.IsActive)
|
||||
|
|
|
@ -2185,7 +2185,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
GlobalWin.Tools.LuaConsole.LoadLuaSession(filePaths[0]);
|
||||
}
|
||||
}
|
||||
else if (MovieSession.IsValidMovieExtension(ext))
|
||||
else if (MovieService.IsValidMovieExtension(ext))
|
||||
{
|
||||
StartNewMovie(MovieService.Get(filePaths[0]), false);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue