From f72b13bed3d91f990638e04ecfdb618e3d2653b7 Mon Sep 17 00:00:00 2001 From: adelikat Date: Mon, 2 Jun 2014 01:05:51 +0000 Subject: [PATCH] Lua - events.unregisterbyid() - strongly type guid to string since that's what the methods return that give guids back to the script --- BizHawk.Client.Common/lua/EmuLuaLibrary.Events.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Client.Common/lua/EmuLuaLibrary.Events.cs b/BizHawk.Client.Common/lua/EmuLuaLibrary.Events.cs index f4ce4b6e3a..247f72b3ec 100644 --- a/BizHawk.Client.Common/lua/EmuLuaLibrary.Events.cs +++ b/BizHawk.Client.Common/lua/EmuLuaLibrary.Events.cs @@ -228,7 +228,7 @@ namespace BizHawk.Client.Common "unregisterbyid", "Removes the registered function that matches the guid. If a function is found and remove the function will return true. If unable to find a match, the function will return false." )] - public bool UnregisterById(object guid) + public bool UnregisterById(string guid) { foreach (var nlf in _luaFunctions.Where(nlf => nlf.Guid.ToString() == guid.ToString())) {