summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/resources/lib/utillib.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/resources/lib/utillib.lua b/examples/resources/lib/utillib.lua
index 42a331c..79bbcb4 100644
--- a/examples/resources/lib/utillib.lua
+++ b/examples/resources/lib/utillib.lua
@@ -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