lua: let user know which lua core is in use

This commit is contained in:
feos 2018-03-08 23:44:42 +03:00
parent e8103a1c53
commit 900a9e5322
1 changed files with 6 additions and 0 deletions

View File

@ -349,5 +349,11 @@ namespace BizHawk.Client.Common
return "";
}
[LuaMethod("getluacore", "returns the name of the Lua core currently in use")]
public string GetLuaBackend()
{
return Lua.WhichLua;
}
}
}