Skip to content
Permalink
Browse files

example of phase_poll nil error

  • Loading branch information
lazzarello committed May 26, 2019
1 parent b434ff2 commit 483a3ceaeb7646f3baaf0ff1e81ce94a3d0bd360
Showing with 8 additions and 9 deletions.
  1. +8 −9 gemini.lua
@@ -69,13 +69,19 @@ function init()

counter = metro.init(count, 0.01, -1)
counter:start()

re = metro.init()
re.time = 0.03
re.event = function()
arc_redraw()
end
re:start()
end

function count()
redraw()
end


local function reset_voice()
engine.seek(0)
end
@@ -285,11 +291,4 @@ arc_redraw = function()
a:segment(4, 0, 6.28, 3)

a:refresh()
end

re = metro.init()
re.time = 0.03
re.event = function()
arc_redraw()
end
re:start()
end

0 comments on commit 483a3ce

Please sign in to comment.