From d5d84943faa2eb24c475937e0cdc1837b5ac31ff Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 13 Apr 2014 14:24:38 +0000 Subject: [PATCH] meh, slight tweak to that commit --- BizHawk.Client.Common/lua/EmuLuaLibrary.GameInfo.cs | 8 ++++---- output/Lua/UnitTests/GameInfo.lua | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/BizHawk.Client.Common/lua/EmuLuaLibrary.GameInfo.cs b/BizHawk.Client.Common/lua/EmuLuaLibrary.GameInfo.cs index 07dfe9bcd3..8253e92249 100644 --- a/BizHawk.Client.Common/lua/EmuLuaLibrary.GameInfo.cs +++ b/BizHawk.Client.Common/lua/EmuLuaLibrary.GameInfo.cs @@ -43,10 +43,10 @@ namespace BizHawk.Client.Common } [LuaMethodAttributes( - "getindatabase", + "indatabase", "returns whether or not the currently loaded rom is in the game database" )] - public bool GetInDatabase() + public bool InDatabase() { if (Global.Game != null) { @@ -71,10 +71,10 @@ namespace BizHawk.Client.Common } [LuaMethodAttributes( - "getisstatusbad", + "isstatusbad", "returns the currently loaded rom's game database status is considered 'bad'" )] - public bool GetIsStatusBad() + public bool IsStatusBad() { if (Global.Game != null) { diff --git a/output/Lua/UnitTests/GameInfo.lua b/output/Lua/UnitTests/GameInfo.lua index fd80501555..fcaa9a0703 100644 --- a/output/Lua/UnitTests/GameInfo.lua +++ b/output/Lua/UnitTests/GameInfo.lua @@ -2,9 +2,9 @@ console.log("Game Info library test") console.log("Rom Name: " .. gameinfo.getromname()); console.log("Rom Hash: " .. gameinfo.getromhash()); console.log("Display Type: " .. emu.getdisplaytype()); -console.log("In Database?: " .. tostring(gameinfo.getindatabase())); +console.log("In Database?: " .. tostring(gameinfo.indatabase())); console.log("Rom Status: " .. gameinfo.getstatus()); -console.log("Is Status Bad?: " .. tostring(gameinfo.getisstatusbad())); +console.log("Is Status Bad?: " .. tostring(gameinfo.isstatusbad())); console.log("Board Type: " .. gameinfo.getboardtype()); console.log("Game Options: ") console.log(gameinfo.getoptions()); \ No newline at end of file