Remove yet more unused code
This commit is contained in:
parent
7653b86f44
commit
f35717aae2
|
@ -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);
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue