From 3143c38b7d106b8daa295b5b0e7845345e2c2515 Mon Sep 17 00:00:00 2001 From: zeromus Date: Fri, 31 Jan 2020 00:36:01 -0500 Subject: [PATCH] fix lua bit.arshift (fixes #1825) --- BizHawk.Client.Common/lua/EmuLuaLibrary.Bit.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BizHawk.Client.Common/lua/EmuLuaLibrary.Bit.cs b/BizHawk.Client.Common/lua/EmuLuaLibrary.Bit.cs index e37c7d33a3..fa169ebbf6 100644 --- a/BizHawk.Client.Common/lua/EmuLuaLibrary.Bit.cs +++ b/BizHawk.Client.Common/lua/EmuLuaLibrary.Bit.cs @@ -75,9 +75,9 @@ namespace BizHawk.Client.Common [LuaMethodExample("local inbitars = bit.arshift( -1000, 4 );")] [LuaMethod("arshift", "Arithmetic shift right of 'val' by 'amt' bits")] - public static int Arshift(int val, int amt) + public static int Arshift(uint val, int amt) { - return val >> amt; + return (int)val >> amt; } [LuaMethodExample("if ( bit.check( -12345, 35 ) ) then\r\n\tconsole.log( \"Returns result of bit 'pos' being set in 'num'\" );\r\nend;")]