bit polyfill: tiny tweak

This commit is contained in:
Starbeamrainbowlabs 2021-07-19 00:26:52 +01:00
parent 9020948dc5
commit 73e07eb013
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 7 additions and 6 deletions

View File

@ -18,14 +18,15 @@ if minetest.global_exists("bit") then
bit = bit
else
bit = {}
bit.bits = 32
bit.powtab = { 1 }
for b = 1, bit.bits - 1 do
bit.powtab[#bit.powtab + 1] = math.pow(2, b)
end
end
bit.bits = 32
bit.powtab = { 1 }
for b = 1, bit.bits - 1 do
bit.powtab[#bit.powtab + 1] = math.pow(2, b)
end
-- Functions
-- bit.band