PNG: Always use bit XOR polyfill for now

master
Lars Mueller 2021-10-24 11:42:32 +02:00
parent 281db12a5f
commit 8801a3d159
1 changed files with 1 additions and 1 deletions

View File

@ -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.bxor or function(a, b)
local function bit_xor(a, b)
local res = 0
local bit = 1
for _ = 1, 32 do