From 57bf49bea94213a07fa539a3039851c2b6ca5828 Mon Sep 17 00:00:00 2001 From: Djeeberjr Date: Sun, 13 Mar 2022 22:28:48 +0100 Subject: [PATCH] added lshift polyfill --- src/polyfill.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/polyfill.lua b/src/polyfill.lua index aeda9fb..a6b010d 100644 --- a/src/polyfill.lua +++ b/src/polyfill.lua @@ -45,8 +45,7 @@ bit.tohex = function(x,n) end bit.lshift = function(x,n) - print("ERROR: Tell a dev to implement: bit.lshift") - error() + return bit.blshift(x,n); end