lua - remove movie.insertframe() as it is no longer needed and was not coded in an acceptable way, if such a feature is needed in the future, it needs to be thought through better

This commit is contained in:
adelikat 2015-08-01 22:21:44 -04:00
parent 8ec8032061
commit 0205762409
2 changed files with 0 additions and 15 deletions

View File

@ -32,19 +32,6 @@ namespace BizHawk.Client.Common
return Global.MovieSession.Movie.IsActive && Global.MovieSession.Movie.StartsFromSaveRam;
}
[LuaMethodAttributes(
"insertframe",
"Inserts a log entry string into the specified index of the movie input log"
)]
public void InsertFrame(int index, string logEntry)
{
if (Global.MovieSession.Movie.IsActive)
{
// TODO: don't make this bk2 specific, and don't expose the log as the means to do this!
(Global.MovieSession.Movie as Bk2Movie).Log.Insert(index, logEntry);
}
}
[LuaMethodAttributes(
"filename",
"Returns the file name including path of the currently loaded movie"

View File

@ -42,8 +42,6 @@ namespace BizHawk.Client.Common
}
}
public List<string> Log { get { return _log; } }
public string Name { get; private set; }
public virtual string PreferredExtension { get { return Extension; } }