From 2d169cdb7d67de8472b2eb0640e8c97c8a56fab8 Mon Sep 17 00:00:00 2001 From: pasky1382 Date: Sun, 19 Jan 2014 16:58:21 +0000 Subject: [PATCH] added LuaLong function --- BizHawk.Client.Common/lua/LuaLibraryBase.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/BizHawk.Client.Common/lua/LuaLibraryBase.cs b/BizHawk.Client.Common/lua/LuaLibraryBase.cs index e1be7fbded..e9f26f3d91 100644 --- a/BizHawk.Client.Common/lua/LuaLibraryBase.cs +++ b/BizHawk.Client.Common/lua/LuaLibraryBase.cs @@ -35,6 +35,11 @@ namespace BizHawk.Client.Common return (uint)(double)luaArg; } + protected static long LuaLong(object luaArg) + { + return (long)(double)luaArg; + } + /// /// LuaInterface requires the exact match of parameter count, except optional parameters. /// So, if you want to support variable arguments, declare them as optional and pass