so, something like this would cause the error easily, if you are tapping several places repeatedly:
Code: Select all
function love.update(dt)
for i = 1,love.touch.getTouchCount() do
id, x, y, pressure = love.touch.getTouch(i)
sleep(.1) -- wait a tenth of a second
end
end
local clock = os.clock
function sleep(n)
local t0 = clock()
while clock() - t0 <= n do end
end