mirror of
https://github.com/appgurueu/modlib.git
synced 2024-11-22 15:23:48 +01:00
PNG: Fix bit.bxor not being used
This commit is contained in:
parent
5285619407
commit
281db12a5f
@ -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 and bit.xor or function(a, b)
|
||||
local bit_xor = bit and bit.bxor or function(a, b)
|
||||
local res = 0
|
||||
local bit = 1
|
||||
for _ = 1, 32 do
|
||||
|
Loading…
Reference in New Issue
Block a user