Bitwise functions now use 64 bit integers.

This commit is contained in:
jussi
2025-01-17 13:11:03 +02:00
parent 6ddaea56a5
commit 3cccee885e
3 changed files with 22 additions and 21 deletions

View File

@@ -171,7 +171,7 @@ function utillib.randomFloat( min, max )
end
function utillib.printBin( v )
for i = 31, 0, -1 do
for i = 63, 0, -1 do
if RL.BitGet( v, i ) then
io.write( "1" )
else