rogue secret technique fix, and small fixes

This commit is contained in:
Tercio Jose
2022-10-26 13:28:34 -03:00
parent 50dc380016
commit 60397057e7
13 changed files with 174 additions and 62 deletions
+1 -1
View File
@@ -972,7 +972,7 @@ do
-- logic OR for number values
local function lor (x,y)
result = 0
local result = 0
for p=1,8 do result = result + (((bit(x,p) or bit(y,p)) == true) and 2^(p-1) or 0) end
return result
end