mirror of
https://github.com/appgurueu/modlib.git
synced 2024-11-25 16:53:46 +01:00
Fix crash when bit library is unavailable
This commit is contained in:
parent
6d40609f38
commit
5285619407
@ -3,7 +3,7 @@ local signature = "\137\80\78\71\13\10\26\10"
|
||||
local assert, char, ipairs, insert, concat, abs, floor = assert, string.char, ipairs, table.insert, table.concat, math.abs, math.floor
|
||||
|
||||
-- TODO move to modlib.bit eventually
|
||||
local bit_xor = bit.xor or function(a, b)
|
||||
local bit_xor = bit and bit.xor or function(a, b)
|
||||
local res = 0
|
||||
local bit = 1
|
||||
for _ = 1, 32 do
|
||||
|
Loading…
Reference in New Issue
Block a user