Remove yet more unused code

This commit is contained in:
adelikat 2017-02-22 10:11:08 -06:00
parent 7653b86f44
commit f35717aae2
2 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@ namespace BizHawk.Client.EmuHawk
get { return (GuiLuaLibrary)Libraries[typeof(GuiLuaLibrary)]; }
}
public EmuLuaLibrary(LuaConsole passed, IEmulatorServiceProvider serviceProvider)
public EmuLuaLibrary(IEmulatorServiceProvider serviceProvider)
: this()
{
LuaWait = new AutoResetEvent(false);

View File

@ -167,7 +167,7 @@ namespace BizHawk.Client.EmuHawk
file.Stop();
}
LuaImp = new EmuLuaLibrary(this, Emulator.ServiceProvider);
LuaImp = new EmuLuaLibrary(Emulator.ServiceProvider);
InputBox.AutoCompleteCustomSource.AddRange(LuaImp.Docs.Select(a => a.Library + "." + a.Name).ToArray());
foreach (var file in runningScripts)