FPS Stuck at 50
Posted: Sun Dec 07, 2014 5:26 am
I noticed in a new project I'm working on that my framerate was pretty bad, and tried to get to the bottom of what part of my code was causing it. I ended up creating a whole new project with just the following code:
This reported that with nothing else going on, it was only running at 50 fps, while in the past my love projects would often run at close to 100 right off the bat on my machine. Has something change with .9.1? Has anyone else had any issues with this? Or is this likely something wrong with my machine or some weirdness with opengl?
Code: Select all
function love.draw()
love.graphics.print("Current FPS: "..tostring(love.timer.getFPS( )), 10, 10)
end