From b6e33d010aaae144b477f8f3095145dc809918eb Mon Sep 17 00:00:00 2001 From: adelikat Date: Thu, 1 Jan 2015 20:08:03 +0000 Subject: [PATCH] Lua - gameinfo library - convert to using service injection --- BizHawk.Client.Common/lua/EmuLuaLibrary.GameInfo.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/BizHawk.Client.Common/lua/EmuLuaLibrary.GameInfo.cs b/BizHawk.Client.Common/lua/EmuLuaLibrary.GameInfo.cs index a18438613c..a8e45df62a 100644 --- a/BizHawk.Client.Common/lua/EmuLuaLibrary.GameInfo.cs +++ b/BizHawk.Client.Common/lua/EmuLuaLibrary.GameInfo.cs @@ -1,10 +1,14 @@ using System; using LuaInterface; +using BizHawk.Emulation.Common; namespace BizHawk.Client.Common { public sealed class GameInfoLuaLibrary : LuaLibraryBase { + [RequiredService] + public IEmulator Emulator { get; set; } + public GameInfoLuaLibrary(Lua lua) : base(lua) { } @@ -89,7 +93,7 @@ namespace BizHawk.Client.Common )] public string GetBoardType() { - return Global.Emulator.BoardName; + return Emulator.BoardName ?? ""; } [LuaMethodAttributes(