Merge EventsLuaLibrary.RegisteredFunctions into Win32LuaLibraries

This commit is contained in:
YoshiRulz 2020-12-05 05:20:14 +10:00
parent 6aefa75cff
commit 8f10ce66a6
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
2 changed files with 1 additions and 3 deletions

View File

@ -29,8 +29,6 @@ namespace BizHawk.Client.Common
public override string Name => "event";
public LuaFunctionList RegisteredFunctions { get; } = new LuaFunctionList();
private void LogMemoryCallbacksNotImplemented()
{
Log($"{Emulator.Attributes().CoreName} does not implement memory callbacks");

View File

@ -150,7 +150,7 @@ namespace BizHawk.Client.EmuHawk
public bool FrameAdvanceRequested { get; private set; }
public override LuaFunctionList RegisteredFunctions => EventsLibrary.RegisteredFunctions;
public override LuaFunctionList RegisteredFunctions { get; } = new LuaFunctionList();
public override void CallSaveStateEvent(string name)
{