remove some unused code

This commit is contained in:
adelikat 2020-04-14 16:25:28 -05:00
parent 017573f4c6
commit 831621b864
3 changed files with 0 additions and 19 deletions

View File

@ -298,22 +298,5 @@ namespace BizHawk.Client.Common
writer.WriteLine(record);
}
}
/// <summary>
/// Takes a log entry from a line in an input log,
/// If the log key differs from the system's, it will be converted
/// </summary>
/// <param name="line">a log entry line of text from the input log</param>
/// <param name="logKey">a key used to describe the mnemonic values and positions in the log</param>
private string ConvertLogEntryFromFile(string line, string logKey)
{
var adapter = new Bk2LogEntryGenerator(logKey).MovieControllerAdapter;
adapter.Definition = Global.MovieSession.MovieControllerAdapter.Definition;
adapter.SetControllersAsMnemonic(line);
var lg = LogGeneratorInstance();
lg.SetSource(adapter);
return lg.GenerateLogEntry();
}
}
}

View File

@ -11,7 +11,6 @@ using BizHawk.Emulation.Common;
using BizHawk.Client.Common;
using BizHawk.Client.Common.MovieConversionExtensions;
using BizHawk.Client.EmuHawk.ToolExtensions;
using BizHawk.Common.PathExtensions;
using BizHawk.Emulation.Cores.Nintendo.N64;
namespace BizHawk.Client.EmuHawk

View File

@ -4,7 +4,6 @@ using System.IO;
using System.Windows.Forms;
using BizHawk.Client.Common;
using BizHawk.Common.PathExtensions;
using BizHawk.Emulation.Common;
namespace BizHawk.Client.EmuHawk