diff --git a/BizHawk.Client.Common/lua/EmuLuaLibrary.Emu.cs b/BizHawk.Client.Common/lua/EmuLuaLibrary.Emu.cs index 3edc77cd9f..4613400bf5 100644 --- a/BizHawk.Client.Common/lua/EmuLuaLibrary.Emu.cs +++ b/BizHawk.Client.Common/lua/EmuLuaLibrary.Emu.cs @@ -34,6 +34,9 @@ namespace BizHawk.Client.Common [OptionalService] public IRegionable RegionableCore { get; set; } + [OptionalService] + public IBoardInfo BoardInfo { get; set; } + public Action FrameAdvanceCallback { get; set; } public Action YieldCallback { get; set; } @@ -342,5 +345,16 @@ namespace BizHawk.Client.Common return ""; } + + [LuaMethodAttributes("getboardname", "returns (if available) the board name of the loaded ROM")] + public string GetBoardName() + { + if (BoardInfo != null) + { + return BoardInfo.BoardName; + } + + return ""; + } } }