diff --git a/BizHawk.Client.Common/lua/EmuLuaLibrary.Movie.cs b/BizHawk.Client.Common/lua/EmuLuaLibrary.Movie.cs index 67547ad2dc..d3e863df51 100644 --- a/BizHawk.Client.Common/lua/EmuLuaLibrary.Movie.cs +++ b/BizHawk.Client.Common/lua/EmuLuaLibrary.Movie.cs @@ -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" diff --git a/BizHawk.Client.Common/movie/bk2/Bk2Movie.cs b/BizHawk.Client.Common/movie/bk2/Bk2Movie.cs index bea497d902..12bffc939e 100644 --- a/BizHawk.Client.Common/movie/bk2/Bk2Movie.cs +++ b/BizHawk.Client.Common/movie/bk2/Bk2Movie.cs @@ -42,8 +42,6 @@ namespace BizHawk.Client.Common } } - public List Log { get { return _log; } } - public string Name { get; private set; } public virtual string PreferredExtension { get { return Extension; } }