Code: Select all
function love.conf(t)
t.console = true
t.window.vsync = 0
t.modules.physics = false
end
I even cracked open my own love.run() and commented out the 1,000 FPS cap:
Code: Select all
--if love.timer then love.timer.sleep(0.001) end
Code: Select all
if love.update then
love.update(dt)
love.update(dt)
love.update(dt)
love.update(dt)
end
I have read several old posts in this forum explaining how to disable VSync, and quintuple-checked the Wiki. I cannot find any further explanation. Thanks in advance for the help