aboutsummaryrefslogtreecommitdiff
path: root/gamemode/shared/lockbox/bit.lua
diff options
context:
space:
mode:
Diffstat (limited to 'gamemode/shared/lockbox/bit.lua')
-rw-r--r--gamemode/shared/lockbox/bit.lua11
1 files changed, 0 insertions, 11 deletions
diff --git a/gamemode/shared/lockbox/bit.lua b/gamemode/shared/lockbox/bit.lua
deleted file mode 100644
index 0ccdb82..0000000
--- a/gamemode/shared/lockbox/bit.lua
+++ /dev/null
@@ -1,11 +0,0 @@
-local e = bit
-
--- Workaround to support Lua 5.2 bit32 API with the LuaJIT bit one
-if e.rol and not e.lrotate then
- e.lrotate = e.rol
-end
-if e.ror and not e.rrotate then
- e.rrotate = e.ror
-end
-
-return bit