another small Movies 2.0 todo

This commit is contained in:
adelikat 2014-06-14 14:09:55 +00:00
parent d816b1ed20
commit 18d0a59869
3 changed files with 13 additions and 16 deletions

View File

@ -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

View File

@ -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)

View File

@ -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);
}